More exhaustive needsDotDotForPropertyAccess

This commit is contained in:
Ron Buckton
2017-01-24 13:42:05 -08:00
parent ceb5fac343
commit 20249e5c4a
10 changed files with 199 additions and 5 deletions
@@ -0,0 +1,6 @@
// @target: es6
0xffffffff.toString();
0o01234.toString();
0b01101101.toString();
1234..toString();
1e0.toString();
@@ -0,0 +1,7 @@
// @target: es3
0xffffffff.toString();
0o01234.toString();
0b01101101.toString();
1234..toString();
1e0.toString();
000.toString();