Lines Matching refs:arguments

56 PASS (function eval(){'use strict';}) threw exception SyntaxError: Unexpected eval or arguments in …
57 … eval(){'use strict';})}) threw exception SyntaxError: Unexpected eval or arguments in strict mode.
58 PASS (function (eval){'use strict';}) threw exception SyntaxError: Unexpected eval or arguments in …
59 … (eval){'use strict';})}) threw exception SyntaxError: Unexpected eval or arguments in strict mode.
60 PASS (function arguments(){'use strict';}) threw exception SyntaxError: Unexpected eval or argument…
61 PASS (function(){(function arguments(){'use strict';})}) threw exception SyntaxError: Unexpected ev…
62 PASS (function (arguments){'use strict';}) threw exception SyntaxError: Unexpected eval or argument…
63 PASS (function(){(function (arguments){'use strict';})}) threw exception SyntaxError: Unexpected ev…
64 …'use strict'; var eval;}) threw exception SyntaxError: Unexpected eval or arguments in strict mode.
65 …se strict'; var eval;})}) threw exception SyntaxError: Unexpected eval or arguments in strict mode.
66 PASS (function (){'use strict'; var arguments;}) threw exception SyntaxError: Unexpected eval or ar…
67 …nction(){(function (){'use strict'; var arguments;})}) threw exception SyntaxError: Unexpected eva…
68 …ct'; try{}catch(eval){}}) threw exception SyntaxError: Unexpected eval or arguments in strict mode.
69 …'; try{}catch(eval){}})}) threw exception SyntaxError: Unexpected eval or arguments in strict mode.
70 …S (function (){'use strict'; try{}catch(arguments){}}) threw exception SyntaxError: Unexpected eva…
71 …{(function (){'use strict'; try{}catch(arguments){}})}) threw exception SyntaxError: Unexpected ev…
82arguments.callee; })() threw exception TypeError: 'caller', 'callee', and 'arguments' properties m…
83arguments.caller; })() threw exception TypeError: 'caller', 'callee', and 'arguments' properties m…
84 PASS (function f(){'use strict'; f.arguments; })() threw exception TypeError: 'caller' and 'argumen…
85 PASS (function f(){'use strict'; f.caller; })() threw exception TypeError: 'caller' and 'arguments'…
86 PASS (function f(){'use strict'; f.arguments=5; })() threw exception TypeError: 'caller' and 'argum…
87 …'use strict'; f.caller=5; })() threw exception TypeError: 'caller' and 'arguments' are restricted …
88arguments.callee; })() threw exception TypeError: 'caller', 'callee', and 'arguments' properties m…
89arguments.caller; })() threw exception TypeError: 'caller', 'callee', and 'arguments' properties m…
90 PASS (function f(arg){'use strict'; f.arguments; })() threw exception TypeError: 'caller' and 'argu…
91 …){'use strict'; f.caller; })() threw exception TypeError: 'caller' and 'arguments' are restricted …
92 PASS (function f(arg){'use strict'; f.arguments=5; })() threw exception TypeError: 'caller' and 'ar…
93 …'use strict'; f.caller=5; })() threw exception TypeError: 'caller' and 'arguments' are restricted …
97 PASS "arguments" in function(){"use strict"} is true
98 PASS (function(){"use strict";}).hasOwnProperty("arguments") is false
99 PASS (function(){"use strict";}).__proto__.hasOwnProperty("arguments") is true
139 PASS 'use strict'; ++eval threw exception SyntaxError: Unexpected eval or arguments in strict mode.
140 PASS (function(){'use strict'; ++eval}) threw exception SyntaxError: Unexpected eval or arguments i…
141 PASS 'use strict'; eval++ threw exception SyntaxError: Unexpected eval or arguments in strict mode.
142 PASS (function(){'use strict'; eval++}) threw exception SyntaxError: Unexpected eval or arguments i…
143 PASS 'use strict'; --eval threw exception SyntaxError: Unexpected eval or arguments in strict mode.
144 PASS (function(){'use strict'; --eval}) threw exception SyntaxError: Unexpected eval or arguments i…
145 PASS 'use strict'; eval-- threw exception SyntaxError: Unexpected eval or arguments in strict mode.
146 PASS (function(){'use strict'; eval--}) threw exception SyntaxError: Unexpected eval or arguments i…
147 PASS 'use strict'; function f() { ++arguments } threw exception SyntaxError: Unexpected eval or arg…
148 …unction(){'use strict'; function f() { ++arguments }}) threw exception SyntaxError: Unexpected eva…
149 PASS 'use strict'; function f() { arguments++ } threw exception SyntaxError: Unexpected eval or arg…
150 …function(){'use strict'; function f() { arguments++ }}) threw exception SyntaxError: Unexpected ev…
151 PASS 'use strict'; function f() { --arguments } threw exception SyntaxError: Unexpected eval or arg…
152 …unction(){'use strict'; function f() { --arguments }}) threw exception SyntaxError: Unexpected eva…
153 PASS 'use strict'; function f() { arguments-- } threw exception SyntaxError: Unexpected eval or arg…
154 …function(){'use strict'; function f() { arguments-- }}) threw exception SyntaxError: Unexpected ev…
155 …S global.eval('"use strict"; if (0) ++arguments; true;') threw exception SyntaxError: Unexpected e…
164 PASS 'use strict'; function f() { ++(1, arguments) } threw exception ReferenceError: Invalid left-h…
165 PASS (function(){'use strict'; function f() { ++(1, arguments) }}) threw exception ReferenceError: …
166 PASS 'use strict'; function f() { (1, arguments)++ } threw exception ReferenceError: Invalid left-h…
167 PASS (function(){'use strict'; function f() { (1, arguments)++ }}) threw exception ReferenceError: …
168 PASS 'use strict'; function f() { --(1, arguments) } threw exception ReferenceError: Invalid left-h…
169 PASS (function(){'use strict'; function f() { --(1, arguments) }}) threw exception ReferenceError: …
170 PASS 'use strict'; function f() { (1, arguments)-- } threw exception ReferenceError: Invalid left-h…
171 PASS (function(){'use strict'; function f() { (1, arguments)-- }}) threw exception ReferenceError: …
178 PASS (function (a){'use strict'; a = false; return a !== arguments[0]; })(true) is true
179 PASS (function (a){'use strict'; arguments[0] = false; return a !== arguments[0]; })(true) is true
180 PASS (function (a){'use strict'; a=false; return arguments; })(true)[0] is true
181 PASS (function (a){'use strict'; arguments[0]=false; return a; })(true) is true
182 PASS (function (a){'use strict'; arguments[0]=true; return arguments; })(false)[0] is true
183 PASS (function (){'use strict'; arguments[0]=true; return arguments; })(false)[0] is true
184 PASS (function (a){'use strict'; arguments[0]=true; a=false; return arguments; })()[0] is true
185 PASS (function (a){'use strict'; arguments[0]=false; a=true; return a; })() is true
186 PASS (function (a){'use strict'; arguments[0]=true; return arguments; })()[0] is true
187 PASS (function (){'use strict'; arguments[0]=true; return arguments; })()[0] is true
188 …se strict'; var local; (function (){local;})(); a = false; return a !== arguments[0]; })(true) is …
189 …(a){'use strict'; var local; (function (){local;})(); arguments[0] = false; return a !== arguments
190 PASS (function (a){'use strict'; var local; (function (){local;})(); a=false; return arguments; })(…
191 PASS (function (a){'use strict'; var local; (function (){local;})(); arguments[0]=false; return a; …
192 …tion (a){'use strict'; var local; (function (){local;})(); arguments[0]=true; return arguments; })…
193 …tion (){'use strict'; var local; (function (){local;})(); arguments[0]=true; return arguments; })…
194 …(a){'use strict'; var local; (function (){local;})(); arguments[0]=true; a=false; return arguments
195 …tion (a){'use strict'; var local; (function (){local;})(); arguments[0]=true; return arguments; })…
196 PASS (function (a){'use strict'; var local; (function (){local;})(); arguments[0]=false; a=true; re…
197 …tion (){'use strict'; var local; (function (){local;})(); arguments[0]=true; return arguments; })…
200 PASS (function f(arg){'use strict'; return Object.getOwnPropertyDescriptor(f.__proto__, 'arguments'…
202 PASS (function f(arg){'use strict'; return Object.getOwnPropertyDescriptor(arguments, 'callee').val…
203 PASS (function f(arg){'use strict'; return Object.getOwnPropertyDescriptor(arguments, 'caller').val…
204 PASS (function f(arg){'use strict'; var descriptor = Object.getOwnPropertyDescriptor(arguments, 'ca…
205 PASS (function f(arg){'use strict'; var descriptor = Object.getOwnPropertyDescriptor(arguments, 'ca…
207 …strict'; var descriptor = Object.getOwnPropertyDescriptor(f.__proto__, 'arguments'); return descri…
217 PASS 'use strict';1-(eval=1); threw exception SyntaxError: Unexpected eval or arguments in strict m…
218 …use strict';1-(eval=1);}) threw exception SyntaxError: Unexpected eval or arguments in strict mode.
219 PASS 'use strict';arguments=1; threw exception SyntaxError: Unexpected eval or arguments in strict …
220 PASS (function(){'use strict';arguments=1;}) threw exception SyntaxError: Unexpected eval or argume…
221 PASS 'use strict';1-(arguments=1); threw exception SyntaxError: Unexpected eval or arguments in str…
222 PASS (function(){'use strict';1-(arguments=1);}) threw exception SyntaxError: Unexpected eval or ar…
223 PASS 'use strict';var a=(eval=1); threw exception SyntaxError: Unexpected eval or arguments in stri…
224 …strict';var a=(eval=1);}) threw exception SyntaxError: Unexpected eval or arguments in strict mode.
225 PASS 'use strict';var a=(arguments=1); threw exception SyntaxError: Unexpected eval or arguments in…
226 PASS (function(){'use strict';var a=(arguments=1);}) threw exception SyntaxError: Unexpected eval o…