Searched refs:FunctionConstructor (Results 1 - 3 of 3) sorted by relevance

/macosx-10.10.1/JavaScriptCore-7600.1.17/runtime/
H A DFunctionConstructor.h34 class FunctionConstructor : public InternalFunction { class in namespace:JSC
38 static FunctionConstructor* create(VM& vm, Structure* structure, FunctionPrototype* functionPrototype)
40 FunctionConstructor* constructor = new (NotNull, allocateCell<FunctionConstructor>(vm.heap)) FunctionConstructor(vm, structure);
53 FunctionConstructor(VM&, Structure*);
H A DFunctionConstructor.cpp22 #include "FunctionConstructor.h"
38 STATIC_ASSERT_IS_TRIVIALLY_DESTRUCTIBLE(FunctionConstructor);
40 const ClassInfo FunctionConstructor::s_info = { "Function", &Base::s_info, 0, 0, CREATE_METHOD_TABLE(FunctionConstructor) };
42 FunctionConstructor::FunctionConstructor(VM& vm, Structure* structure) function in class:JSC::FunctionConstructor
47 void FunctionConstructor::finishCreation(VM& vm, FunctionPrototype* functionPrototype)
62 ConstructType FunctionConstructor::getConstructData(JSCell*, ConstructData& constructData)
75 CallType FunctionConstructor::getCallData(JSCell*, CallData& callData)
H A DJSGlobalObject.cpp51 #include "FunctionConstructor.h"
371 JSCell* functionConstructor = FunctionConstructor::create(vm, FunctionConstructor::createStructure(vm, this, m_functionPrototype.get()), m_functionPrototype.get());

Completed in 71 milliseconds