21 lines
599 B
Plaintext
21 lines
599 B
Plaintext
# colon (deprecated)
|
|
|
|
x = { k: 123 }
|
|
|
|
==>
|
|
Program(VariableDeclaration(VariableDefinition,
|
|
Equals,
|
|
ObjectExpression(ObjectProperty(PropertyName,
|
|
Number))))
|
|
|
|
# equal
|
|
|
|
x = { k = 123 }
|
|
|
|
==>
|
|
Program(VariableDeclaration(VariableDefinition,
|
|
Equals,
|
|
ObjectExpression(ObjectProperty(PropertyName,
|
|
Equals,
|
|
Number))))
|