Home | History | Annotate | Download | only in cctest

Lines Matching defs:base1

1821   v8::Handle<v8::FunctionTemplate> base1 = v8::FunctionTemplate::New();
1822 base1->Inherit(super);
1823 base1->PrototypeTemplate()->Set(CcTest::isolate(), "v1", v8_num(20.1));
1832 env->Global()->Set(v8_str("base1"), base1->GetFunction());
1836 CHECK(CompileRun("base1.prototype.__proto__ == s.prototype")->BooleanValue());
1844 CHECK(CompileRun("base1.prototype.knurd == undefined")->BooleanValue());
1847 base1->GetFunction()->NewInstance());
1862 // base1 and base2 cannot cross reference to each's prototype