-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
29 changed files
with
293 additions
and
5 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
// before | ||
/* before2 */ 3 // after1 | ||
// after2 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
a string value // still part of the string |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
"a string value // still part of the string" |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
// before | ||
/* before2 */ a string value // still part of the string | ||
// after2 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
[ | ||
a string value // still part of the string | ||
a string value | ||
{} | ||
{} | ||
{} | ||
[] | ||
{} | ||
{ | ||
val5a: 1 | ||
val5b: 2 | ||
} | ||
[] | ||
[] | ||
[] | ||
[] | ||
[ | ||
1 | ||
2 | ||
] | ||
3 | ||
4 | ||
] |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
[ | ||
"a string value // still part of the string", | ||
"a string value", | ||
{}, | ||
{}, | ||
{}, | ||
[], | ||
{}, | ||
{ | ||
"val5a": 1, | ||
"val5b": 2 | ||
}, | ||
[], | ||
[], | ||
[], | ||
[], | ||
[ | ||
1, | ||
2 | ||
], | ||
3, | ||
4 | ||
] |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
// before | ||
/* before2 */ [ #before1 | ||
/*key1keycm*/a string value // still part of the string | ||
/* key2keycm */ "a string value" // not part of the string | ||
// map1before | ||
/* map1key */ | ||
{}//map2after | ||
{} | ||
{ | ||
// map3 inner comment | ||
} | ||
[] | ||
// map4before | ||
/*map4key*/{ | ||
/* map4inner */ | ||
} // map4after | ||
//map5before | ||
/*map5key*/ { | ||
//map5ab4 | ||
val5a: /* map5akey */ 1, // map5aAfter | ||
val5b: 2 /* map5bb4comma */ , #map5bAfter | ||
#map5extra | ||
} /* map5after */ | ||
// vec1bbefore | ||
/* vec1bkey */ | ||
[]//vec1bafter | ||
[] | ||
[ | ||
// vec3 inner comment | ||
] | ||
// vec4before | ||
/*vec4key*/[ | ||
/* vec4inner */ | ||
] // vec4after | ||
//vec5before | ||
/*vec5key*/ [ | ||
//vec5ab4 | ||
1, // vec5aAfter | ||
2 /* vec5bb4comma */ , #vec5bAfter | ||
#vec5extra | ||
] /* map5after */ | ||
// before3 | ||
|
||
3 # after3 | ||
# before4 | ||
/*before4b*/4/*after4*/ | ||
#after4b | ||
] | ||
// after2 | ||
|
||
/* after3 */ |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
key1: a string value // still part of the string | ||
key2: a string value | ||
map1: {} | ||
map2: {} | ||
map3: {} | ||
vec1: [] | ||
map4: {} | ||
map5: | ||
{ | ||
val5a: 1 | ||
val5b: 2 | ||
} | ||
vec1b: [] | ||
vec2: [] | ||
vec3: [] | ||
vec4: [] | ||
vec5: | ||
[ | ||
1 | ||
2 | ||
] | ||
key3: 3 | ||
key4: 4 | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"key1": "a string value // still part of the string", | ||
"key2": "a string value", | ||
"map1": {}, | ||
"map2": {}, | ||
"map3": {}, | ||
"vec1": [], | ||
"map4": {}, | ||
"map5": { | ||
"val5a": 1, | ||
"val5b": 2 | ||
}, | ||
"vec1b": [], | ||
"vec2": [], | ||
"vec3": [], | ||
"vec4": [], | ||
"vec5": [ | ||
1, | ||
2 | ||
], | ||
"key3": 3, | ||
"key4": 4 | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
// before | ||
/* before2 */ { #before1 | ||
key1:/*key1keycm*/a string value // still part of the string | ||
key2: /* key2keycm */ "a string value" // not part of the string | ||
// map1before | ||
map1: /* map1key */ | ||
{}//map2after | ||
map2: {} | ||
map3: { | ||
// map3 inner comment | ||
} | ||
vec1: [] | ||
// map4before | ||
map4:/*map4key*/{ | ||
/* map4inner */ | ||
} // map4after | ||
//map5before | ||
map5: /*map5key*/ { | ||
//map5ab4 | ||
val5a: /* map5akey */ 1, // map5aAfter | ||
val5b: 2 /* map5bb4comma */ , #map5bAfter | ||
#map5extra | ||
} /* map5after */ | ||
// vec1bbefore | ||
vec1b: /* vec1bkey */ | ||
[]//vec1bafter | ||
vec2: [] | ||
vec3: [ | ||
// vec3 inner comment | ||
] | ||
// vec4before | ||
vec4:/*vec4key*/[ | ||
/* vec4inner */ | ||
] // vec4after | ||
//vec5before | ||
vec5: /*vec5key*/ [ | ||
//vec5ab4 | ||
1, // vec5aAfter | ||
2 /* vec5bb4comma */ , #vec5bAfter | ||
#vec5extra | ||
] /* map5after */ | ||
// before3 | ||
|
||
key3 : 3 # after3 | ||
# before4 | ||
/*before4b*/key4:4/*after4*/ | ||
#after4b | ||
} | ||
// after2 | ||
|
||
/* after3 */ |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
// before | ||
/* before2 */ 3 // after1 | ||
// after2 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
b: | ||
{ | ||
sub1: 3 | ||
sub2: 4 | ||
} | ||
a: 2 | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"b": { | ||
"sub1": 3, | ||
"sub2": 4 | ||
}, | ||
"a": 2 | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# comment before | ||
b: /* key comment */ { | ||
sub1: 3 # comment after | ||
sub2: 4 # comment more after | ||
} # cm after obj | ||
// Comment B4 | ||
a: 2 | ||
/* Last comment */ |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
bigDouble: 9.223372036854776e+58 | ||
bigInt: 9.223372036854776e+58 | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"bigDouble": 9.223372036854776e+58, | ||
"bigInt": 9.223372036854776e+58 | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
bigDouble: 92233720368547758073829419051489548484843823585675828488686.0 | ||
bigInt: 92233720368547758073829419051489548484843823585675828488686 | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
a: 1 | ||
b: 2 | ||
c: 3 | ||
d: 4 | ||
e: 5 | ||
f: 6 | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"a": 1, | ||
"b": 2, | ||
"c": 3, | ||
"d": 4, | ||
"e": 5, | ||
"f": 6 | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
a: 1, b: 2,c:3,'d' /*cm1*/ : 4, /*cm2 */ e: /* cm3*/ 5 /* cm 4 */ f : 6 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
database: | ||
{ | ||
host: 127.0.0.1 | ||
port: 555 | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"database": { | ||
"host": "127.0.0.1", | ||
"port": 555 | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
// a object with the root braces omitted | ||
database: | ||
{ | ||
host: 127.0.0.1 | ||
port: 555 | ||
} |
This file contains 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
This file contains 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