Home | History | Annotate | Download | only in templates

Lines Matching refs:currentWorldType

94 static v8::Handle<v8::FunctionTemplate> Configure{{v8_class_name}}Template(v8::Handle<v8::FunctionTemplate> desc, v8::Isolate* isolate, WrapperWorldType currentWorldType)
101 0, 0, isolate, currentWorldType);
109 v8::Handle<v8::FunctionTemplate> {{v8_class_name}}::GetTemplate(v8::Isolate* isolate, WrapperWorldType currentWorldType)
112 V8PerIsolateData::TemplateMap::iterator result = data->templateMap(currentWorldType).find(&info);
113 if (result != data->templateMap(currentWorldType).end())
119 Configure{{v8_class_name}}Template(data->rawTemplate(&info, currentWorldType), isolate, currentWorldType);
120 data->templateMap(currentWorldType).add(&info, UnsafePersistent<v8::FunctionTemplate>(isolate, templ));
124 bool {{v8_class_name}}::HasInstance(v8::Handle<v8::Value> value, v8::Isolate* isolate, WrapperWorldType currentWorldType)
126 return V8PerIsolateData::from(isolate)->hasInstance(&info, value, currentWorldType);