Support object literal shorthands

This commit is contained in:
dcodeIO
2018-07-14 15:18:45 +02:00
parent c636eddcd2
commit 10a9f407bf
6 changed files with 25 additions and 12 deletions

View File

@ -4,6 +4,8 @@ var obj = {
"c": false,
d: {
a: 123,
"b": {}
"b": {},
c,
d: d
}
};