HomeSort by relevance Sort by last modified time
    Searched refs:EvilExceptionObject (Results 1 - 2 of 2) sorted by null

  /external/webkit/JavaScriptCore/API/tests/
testapi.js 236 EvilExceptionObject.hasInstance = function f() { return f(); };
237 EvilExceptionObject.__proto__ = undefined;
238 shouldThrow("undefined instanceof EvilExceptionObject");
239 EvilExceptionObject.hasInstance = function () { return true; };
240 shouldBe("undefined instanceof EvilExceptionObject", true);
242 EvilExceptionObject.toNumber = function f() { return f(); }
243 shouldThrow("EvilExceptionObject*5");
244 EvilExceptionObject.toStringExplicit = function f() { return f(); }
245 shouldThrow("String(EvilExceptionObject)");
testapi.c 404 "EvilExceptionObject",
863 JSObjectRef EvilExceptionObject = JSObjectMake(context, EvilExceptionObject_class(context), NULL);
864 JSStringRef EvilExceptionObjectIString = JSStringCreateWithUTF8CString("EvilExceptionObject");
865 JSObjectSetProperty(context, globalObject, EvilExceptionObjectIString, EvilExceptionObject, kJSPropertyAttributeNone, NULL);
    [all...]

Completed in 71 milliseconds