Global 'arguments' binding is not present in all runtime environments

This commit is contained in:
André Bargull 2019-01-30 06:53:46 -08:00
parent 3c81164266
commit b11def3bf4
4 changed files with 12 additions and 4 deletions

View File

@ -22,4 +22,6 @@ info: |
flags: [noStrict] flags: [noStrict]
---*/ ---*/
if (false) {
arguments--; arguments--;
}

View File

@ -22,4 +22,6 @@ info: |
flags: [noStrict] flags: [noStrict]
---*/ ---*/
if (false) {
arguments++; arguments++;
}

View File

@ -22,4 +22,6 @@ info: |
flags: [noStrict] flags: [noStrict]
---*/ ---*/
if (false) {
--arguments; --arguments;
}

View File

@ -22,4 +22,6 @@ info: |
flags: [noStrict] flags: [noStrict]
---*/ ---*/
if (false) {
++arguments; ++arguments;
}