Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
lua 5.1, 5.2
% lua ../examples/tests.lua
"Test\u00A7\"" Test§"
four true
two 2
three three
one 1
lua5.2: ../examples/tests.lua:190: assertion failed!
stack traceback:
[C]: in function 'assert'
../examples/tests.lua:190: in function 'testJSON4Lua'
../examples/tests.lua:203: in main chunk
[C]: in ?
% lua ../examples/tests.lua
"Test\u00A7\"" Test§"
four true
three three
two 2
one 1
lua: ./json.lua:140: attempt to call global 'decode' (a nil value)
stack traceback:
./json.lua:140: in function 'decode'
../examples/tests.lua:199: in function 'testJSON4Lua'
../examples/tests.lua:203: in main chunk
[C]: in ?
% lua ../examples/tests.lua
"Test\u00A7\"" Test§"
one 1
three three
four true
two 2
JSON4Lua tests completed successfully
% lua ../examples/example.lua
JSON encoded test is: {"one":"first","two":"second","three":[2,3,5]}
The decoded table result:
one first
two second
three table: 0x7f91b8508180
The decoded table result.three
1 2
2 3
3 5