Home | History | Annotate | Download | only in v8

Lines Matching refs:Local

77 v8::Local<v8::Object> V8PerContextData::createWrapperFromCacheSlowCase(const WrapperTypeInfo* type)
82 v8::Local<v8::Function> function = constructorForType(type);
83 v8::Local<v8::Object> instanceTemplate = V8ObjectConstructor::newInstance(m_isolate, function);
88 return v8::Local<v8::Object>();
91 v8::Local<v8::Function> V8PerContextData::constructorForTypeSlowCase(const WrapperTypeInfo* type)
99 v8::Local<v8::Function> function = functionTemplate->GetFunction();
101 return v8::Local<v8::Function>();
104 v8::Local<v8::Object> prototypeTemplate = constructorForType(type->parentClass);
106 return v8::Local<v8::Function>();
110 v8::Local<v8::Value> prototypeValue = function->Get(v8AtomicString(m_isolate, "prototype"));
112 v8::Local<v8::Object> prototypeObject = v8::Local<v8::Object>::Cast(prototypeValue);
126 v8::Local<v8::Object> V8PerContextData::prototypeForType(const WrapperTypeInfo* type)
128 v8::Local<v8::Object> constructor = constructorForType(type);
130 return v8::Local<v8::Object>();