File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 1919
2020 nullValue: /* xyz */ null,
2121 boolTrue: true,
22- boolFale : false,
22+ boolFalse : false,
2323 float: 3.14,
2424 floatNegative: -3.14,
2525 floatNegativeWithoutInteger: -.14,
2626 floatNegativeWithoutDecimal: -3.,
2727 integer: 3,
2828 hex: 0x1a,
2929 binary: 0b01,
30- otcal : 0o12,
30+ octal : 0o12,
3131 integerNegative: -3,
3232 stringSingleQuota: 'abc "def" ghi',
3333 stringDoubleQuota: "abc 'def' ghi",
3434 stringBacktick: `abc
3535def \`
3636xyz`,
37- stringEscaple1 : '\0\b\f\n\r\t\u000b\'\\\xA9\u00A9\u{2F804}',
38- stringEscaple2 : "\0\b\f\n\r\t\u000b\'\\\xA9\u00A9\u{2F804}",
39- stringEscaple3 : `\0\b\f\n\r\t\u000b\'\\\xA9\u00A9\u{2F804}`,
37+ stringEscape1 : '\0\b\f\n\r\t\u000b\'\\\xA9\u00A9\u{2F804}',
38+ stringEscape2 : "\0\b\f\n\r\t\u000b\'\\\xA9\u00A9\u{2F804}",
39+ stringEscape3 : `\0\b\f\n\r\t\u000b\'\\\xA9\u00A9\u{2F804}`,
4040 arrayEmpty: [],
4141 arrayEmptyMultiLine: [ @array
4242 ],
4545 "a", @upper
4646 "b",
4747 ],
48- arrayOneline : ["a", "b"], @array
48+ arrayOnline : ["a", "b"], @array
4949 arrayExtraComma: ["a", "b",],
5050 objectEmpty: {},
5151 objectEmptyMultiLine: { @object
You can’t perform that action at this time.
0 commit comments