Skip to content
Snippets Groups Projects
Commit b11def3b authored by André Bargull's avatar André Bargull
Browse files

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

parent 3c811642
No related branches found
No related tags found
No related merge requests found
......@@ -22,4 +22,6 @@ info: |
flags: [noStrict]
---*/
arguments--;
if (false) {
arguments--;
}
......@@ -22,4 +22,6 @@ info: |
flags: [noStrict]
---*/
arguments++;
if (false) {
arguments++;
}
......@@ -22,4 +22,6 @@ info: |
flags: [noStrict]
---*/
--arguments;
if (false) {
--arguments;
}
......@@ -22,4 +22,6 @@ info: |
flags: [noStrict]
---*/
++arguments;
if (false) {
++arguments;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment