author | sundar |
Wed, 06 May 2015 20:04:42 +0530 | |
changeset 30394 | 72a59e4dffea |
parent 25240 | f92c14b1ca11 |
permissions | -rw-r--r-- |
25240
f92c14b1ca11
8047959: bindings created for declarations in eval code are not mutable
sundar
parents:
diff
changeset
|
1 |
delete x? false |
f92c14b1ca11
8047959: bindings created for declarations in eval code are not mutable
sundar
parents:
diff
changeset
|
2 |
typeof x = number |
f92c14b1ca11
8047959: bindings created for declarations in eval code are not mutable
sundar
parents:
diff
changeset
|
3 |
delete f? true |
f92c14b1ca11
8047959: bindings created for declarations in eval code are not mutable
sundar
parents:
diff
changeset
|
4 |
typeof f = undefined |
f92c14b1ca11
8047959: bindings created for declarations in eval code are not mutable
sundar
parents:
diff
changeset
|
5 |
delete foo? false |
f92c14b1ca11
8047959: bindings created for declarations in eval code are not mutable
sundar
parents:
diff
changeset
|
6 |
typeof foo = number |
f92c14b1ca11
8047959: bindings created for declarations in eval code are not mutable
sundar
parents:
diff
changeset
|
7 |
delete func? false |
f92c14b1ca11
8047959: bindings created for declarations in eval code are not mutable
sundar
parents:
diff
changeset
|
8 |
typeof func = function |
f92c14b1ca11
8047959: bindings created for declarations in eval code are not mutable
sundar
parents:
diff
changeset
|
9 |
delete foo? false |
f92c14b1ca11
8047959: bindings created for declarations in eval code are not mutable
sundar
parents:
diff
changeset
|
10 |
typeof foo? number |
f92c14b1ca11
8047959: bindings created for declarations in eval code are not mutable
sundar
parents:
diff
changeset
|
11 |
foo = 33 |
f92c14b1ca11
8047959: bindings created for declarations in eval code are not mutable
sundar
parents:
diff
changeset
|
12 |
x in function = local |
f92c14b1ca11
8047959: bindings created for declarations in eval code are not mutable
sundar
parents:
diff
changeset
|
13 |
delete x? = true |
f92c14b1ca11
8047959: bindings created for declarations in eval code are not mutable
sundar
parents:
diff
changeset
|
14 |
x after delete = global |
f92c14b1ca11
8047959: bindings created for declarations in eval code are not mutable
sundar
parents:
diff
changeset
|
15 |
x = global |