Add literals - replacements of strings and numbers in parser.

This commit is contained in:
Ilmir Usmanov
2014-10-31 21:22:52 +04:00
parent 05cf2dbe04
commit 8c7dc08d93
26 changed files with 822 additions and 568 deletions
+10 -1
View File
@@ -14,4 +14,13 @@
var a = {get a(){return undefined}, set a(b){}}
// var b = {if:0, else:1, try:2, catch:3, finally:4}
var b = {if:0, else:1, try:2, catch:3, finally:4, let:5}
assert (b.if + b.else + b.try + b.catch + b.finally + b.let === 15)
function c() {
"use strict"
var b = {let:15, enum:10}
assert (b.let + b.enum === 25)
}
c();