Home | History | Annotate | Download | only in js

Lines Matching refs:false

59 shouldBe("testThis.call(false)", "false");
68 shouldBeUndefined("testThisDotAccess.call(false)");
74 shouldBeUndefined("testThisBracketAccess.call(false, 'length')");
144 Object.defineProperty(objectWithReadonlyProperty, "prop", {value: "value", writable:false});
171 shouldBeTrue("(function (a){'use strict'; a = false; return a !== arguments[0]; })(true)");
172 shouldBeTrue("(function (a){'use strict'; arguments[0] = false; return a !== arguments[0]; })(true)");
173 shouldBeTrue("(function (a){'use strict'; a=false; return arguments; })(true)[0]");
174 shouldBeTrue("(function (a){'use strict'; arguments[0]=false; return a; })(true)");
175 shouldBeTrue("(function (a){'use strict'; arguments[0]=true; return arguments; })(false)[0]");
176 shouldBeTrue("(function (){'use strict'; arguments[0]=true; return arguments; })(false)[0]");
177 shouldBeTrue("(function (a){'use strict'; arguments[0]=true; a=false; return arguments; })()[0]");
178 shouldBeTrue("(function (a){'use strict'; arguments[0]=false; a=true; return a; })()");
183 shouldBeTrue("(function (a){'use strict'; var local; (function (){local;})(); a = false; return a !== arguments[0]; })(true)");
184 shouldBeTrue("(function (a){'use strict'; var local; (function (){local;})(); arguments[0] = false; return a !== arguments[0]; })(true)");
185 shouldBeTrue("(function (a){'use strict'; var local; (function (){local;})(); a=false; return arguments; })(true)[0]");
186 shouldBeTrue("(function (a){'use strict'; var local; (function (){local;})(); arguments[0]=false; return a; })(true)");
187 shouldBeTrue("(function (a){'use strict'; var local; (function (){local;})(); arguments[0]=true; return arguments; })(false)[0]");
188 shouldBeTrue("(function (){'use strict'; var local; (function (){local;})(); arguments[0]=true; return arguments; })(false)[0]");
189 shouldBeTrue("(function (a){'use strict'; var local; (function (){local;})(); arguments[0]=true; a=false; return arguments; })()[0]");
191 shouldBeTrue("(function (a){'use strict'; var local; (function (){local;})(); arguments[0]=false; a=true; return a; })()");
194 shouldBeTrue("'use strict'; (function (){var a = true; eval('var a = false'); return a; })()");
195 shouldBeTrue("(function (){var a = true; eval('\"use strict\"; var a = false'); return a; })()");
217 var aGlobal = false;
219 aGlobal = false;
221 aGlobal = false;
223 aGlobal = false;
225 aGlobal = false;
227 aGlobal = false;