More tests

This commit is contained in:
Amjad Masad 2015-12-27 01:59:24 -08:00
parent ed5a057e4e
commit 5be9d9d8aa
4 changed files with 7 additions and 1 deletions

View File

@ -1 +1,2 @@
a && (a.b && a.b.c()) && function() {}() && {a: 1}.a;
a && (a.b && a.b.c()) && function() {}() && {a: 1}.a
!function () {}();

View File

@ -1 +1,2 @@
a && a.b && a.b.c() && function () {}() && { a: 1 }.a;
!function () {}();

View File

@ -11,3 +11,5 @@ switch (a, b, c) {}
for (a in b, c);
while (a, b, c);
!(function () {})(), a();

View File

@ -11,3 +11,5 @@ switch (a, b, c) {}
for (a in b, c);
while (a, b, c);
!function () {}(), a();