2009-07-27 03:44:11 +08:00
|
|
|
==== empty-string ====
|
2009-07-10 02:01:40 +08:00
|
|
|
[""]
|
2009-07-27 03:44:11 +08:00
|
|
|
==== short-string ====
|
2009-07-10 02:01:40 +08:00
|
|
|
["a"]
|
2009-07-27 03:44:11 +08:00
|
|
|
==== simple-ascii-string ====
|
2009-07-10 02:01:40 +08:00
|
|
|
["abcdefghijklmnopqrstuvwxyz1234567890 "]
|
2009-07-27 03:44:11 +08:00
|
|
|
==== utf-8-string ====
|
2009-07-18 20:59:55 +08:00
|
|
|
["€þıœəßð some utf-8 ĸʒ×ŋµåäö𝄞"]
|
2009-07-27 03:44:11 +08:00
|
|
|
==== string-escapes ====
|
2009-07-10 02:01:40 +08:00
|
|
|
["\"\\\/\b\f\n\r\t"]
|
2009-07-27 03:44:11 +08:00
|
|
|
==== one-byte-utf-8 ====
|
2009-07-15 01:47:57 +08:00
|
|
|
["\u002c one-byte UTF-8"]
|
2009-07-27 03:44:11 +08:00
|
|
|
==== two-byte-utf-8 ====
|
2009-07-15 01:47:57 +08:00
|
|
|
["\u0123 two-byte UTF-8"]
|
2009-07-27 03:44:11 +08:00
|
|
|
==== three-byte-utf-8 ====
|
2009-07-15 01:47:57 +08:00
|
|
|
["\u0821 three-byte UTF-8"]
|
2009-07-27 03:44:11 +08:00
|
|
|
==== utf-surrogate-four-byte-encoding ====
|
2009-07-15 01:47:57 +08:00
|
|
|
["\uD834\uDD1E surrogate, four-byte UTF-8"]
|
2009-07-27 03:44:11 +08:00
|
|
|
==== escaped-utf-control-char ====
|
2009-07-27 02:51:45 +08:00
|
|
|
["\u0012 escaped control character"]
|
2009-07-27 03:44:11 +08:00
|
|
|
==== simple-int-0 ====
|
2009-07-10 02:01:40 +08:00
|
|
|
[0]
|
2009-07-27 03:44:11 +08:00
|
|
|
==== simple-int-1 ====
|
2009-07-10 02:01:40 +08:00
|
|
|
[1]
|
2009-07-27 03:44:11 +08:00
|
|
|
==== simple-int-123 ====
|
2009-07-10 02:01:40 +08:00
|
|
|
[123]
|
2009-07-27 03:44:11 +08:00
|
|
|
==== negative-zero ====
|
2009-07-10 02:01:40 +08:00
|
|
|
[-0]
|
2009-07-27 03:44:11 +08:00
|
|
|
==== negative-one ====
|
2009-07-10 02:01:40 +08:00
|
|
|
[-1]
|
2009-07-27 03:44:11 +08:00
|
|
|
==== negative-int ====
|
2009-07-10 02:01:40 +08:00
|
|
|
[-123]
|
2009-07-27 03:44:11 +08:00
|
|
|
==== simple-real ====
|
2009-07-10 02:01:40 +08:00
|
|
|
[123.456789]
|
2009-07-27 03:44:11 +08:00
|
|
|
==== real-exponent ====
|
2009-07-10 02:01:40 +08:00
|
|
|
[123e45]
|
2009-07-27 03:44:11 +08:00
|
|
|
==== real-capital-e ====
|
2009-07-10 02:01:40 +08:00
|
|
|
[1E22]
|
2009-07-27 03:44:11 +08:00
|
|
|
==== real-positive-exponent ====
|
2009-07-10 02:01:40 +08:00
|
|
|
[1e+2]
|
2009-07-27 03:44:11 +08:00
|
|
|
==== real-negative-exponent ====
|
2009-07-10 02:01:40 +08:00
|
|
|
[1e-2]
|
2009-07-27 03:44:11 +08:00
|
|
|
==== real-capital-e-positive-exponent ====
|
2009-07-10 02:01:40 +08:00
|
|
|
[1E+2]
|
2009-07-27 03:44:11 +08:00
|
|
|
==== real-capital-e-negative-exponent ====
|
2009-07-10 02:01:40 +08:00
|
|
|
[1E-2]
|
2009-07-27 03:44:11 +08:00
|
|
|
==== real-fraction-exponent ====
|
2009-07-10 02:01:40 +08:00
|
|
|
[123.456e78]
|
2009-07-27 03:44:11 +08:00
|
|
|
==== true ====
|
2009-07-10 02:01:40 +08:00
|
|
|
[true]
|
2009-07-27 03:44:11 +08:00
|
|
|
==== false ====
|
2009-07-10 02:01:40 +08:00
|
|
|
[false]
|
2009-07-27 03:44:11 +08:00
|
|
|
==== null ====
|
2009-07-10 02:01:40 +08:00
|
|
|
[null]
|
2009-07-27 03:44:11 +08:00
|
|
|
==== empty-array ====
|
2009-07-10 02:01:40 +08:00
|
|
|
[]
|
2009-07-27 03:44:11 +08:00
|
|
|
==== empty-object-in-array ====
|
2009-07-10 02:01:40 +08:00
|
|
|
[{}]
|
2009-07-27 03:44:11 +08:00
|
|
|
==== complex-array ====
|
2009-07-10 02:01:40 +08:00
|
|
|
[1,2,3,4,
|
|
|
|
"a", "b", "c",
|
|
|
|
{"foo": "bar", "core": "dump"},
|
|
|
|
true, false, true, true, null, false
|
|
|
|
]
|
2009-07-27 03:44:11 +08:00
|
|
|
==== empty-object ====
|
2009-07-10 02:01:40 +08:00
|
|
|
{}
|
2009-07-27 03:44:11 +08:00
|
|
|
==== simple-object ====
|
2009-07-10 02:01:40 +08:00
|
|
|
{"a":[]}
|