Searched refs:global_templ (Results 1 – 1 of 1) sorted by relevance
233 Handle<ObjectTemplate> global_templ = ObjectTemplate::New(); in msV8CreateContext() local234 global_templ->Set(String::New("require"), FunctionTemplate::New(msV8Require)); in msV8CreateContext()235 global_templ->Set(String::New("print"), FunctionTemplate::New(msV8Print)); in msV8CreateContext()236 global_templ->Set(String::New("alert"), FunctionTemplate::New(msV8Print)); in msV8CreateContext()238 Handle<Context> context_ = Context::New(v8context->isolate, NULL, global_templ); in msV8CreateContext()