Home | History | Annotate | Download | only in mjsunit

Lines Matching refs:undefined

73 // type, but since this change will allow call to be invoked with undefined
153 assertTrue(e.message.indexOf("called on null or undefined") >= 0 ||
154 e.message.indexOf("invoked on undefined or null value") >= 0 ||
155 e.message.indexOf("Cannot convert undefined or null to object") >= 0);
166 // parameters will have the undefined value.
167 // The test for whether the "this" value is null or undefined is always
169 // undefined value is an invalid argument value, it mustn't change
180 should_throw_on_null_and_undefined[i].call(undefined);
198 should_throw_on_null_and_undefined[i].apply(undefined);
206 // Test that all natives that are non generic throw on null and undefined.
249 // Test that we still throw when calling with thisArg null or undefined
269 undefined);
295 undefined);
355 assertEquals(Object.prototype.toString.call(undefined),
356 '[object Undefined]')