Lines Matching full:base2
945 v8::Handle<v8::FunctionTemplate> base2 = v8::FunctionTemplate::New();
946 base2->Inherit(super);
947 base2->PrototypeTemplate()->Set("v2", v8_num(10.1));
953 env->Global()->Set(v8_str("base2"), base2->GetFunction());
957 CHECK(CompileRun("base2.prototype.__proto__ == s.prototype")->BooleanValue());
975 base2->GetFunction()->NewInstance());
982 // base1 and base2 cannot cross reference to each's prototype