mirror of https://github.com/tc39/test262.git
Global 'arguments' binding is not present in all runtime environments
This commit is contained in:
parent
3c81164266
commit
b11def3bf4
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue