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

  /external/webkit/JavaScriptCore/runtime/
ErrorConstructor.cpp 24 #include "ErrorPrototype.h"
32 ErrorConstructor::ErrorConstructor(ExecState* exec, NonNullPassRefPtr<Structure> structure, ErrorPrototype* errorPrototype)
33 : InternalFunction(&exec->globalData(), structure, Identifier(exec, errorPrototype->classInfo()->className))
36 putDirectWithoutTransition(exec->propertyNames().prototype, errorPrototype, DontEnum | DontDelete | ReadOnly);
JSGlobalObject.cpp 46 #include "ErrorPrototype.h"
247 ErrorPrototype* errorPrototype = new (exec) ErrorPrototype(exec, ErrorPrototype::createStructure(d()->objectPrototype), d()->prototypeFunctionStructure.get());
248 d()->errorStructure = ErrorInstance::createStructure(errorPrototype);
250 RefPtr<Structure> nativeErrorPrototypeStructure = NativeErrorPrototype::createStructure(errorPrototype);
271 d()->errorConstructor = new (exec) ErrorConstructor(exec, ErrorConstructor::createStructure(d()->functionPrototype), errorPrototype);
290 errorPrototype->putDirectFunctionWithoutTransition(exec->propertyNames().constructor, d()->errorConstructor, DontEnum);

Completed in 158 milliseconds