Home | History | Annotate | Download | only in cctest

Lines Matching full:cons2

230   v8::Handle<v8::FunctionTemplate> cons2 = v8::FunctionTemplate::New();
231 cons2->SetClassName(v8_str("Cons2"));
235 v8::Handle<v8::FunctionTemplate> args[3] = { cons1, cons2, cons3 };
242 env->Global()->Set(v8_str("Cons2"), cons2->GetFunction());
246 "Fun2(new Cons1(), new Cons2(), new Cons3()) =="
247 "'[object Cons1],[object Cons2],[object Cons3]'");
251 "Fun2(new Cons1(), new Cons2(), 5) == '[object Cons1],[object Cons2],'");
255 "Fun2(new Cons3(), new Cons2(), new Cons1()) == ',[object Cons2],'");
259 "Fun2(new Cons1(), new Cons2(), new Cons3(), 'd') == "
260 "'[object Cons1],[object Cons2],[object Cons3],d';");
264 "Fun2(new Cons1(), new Cons2()) == '[object Cons1],[object Cons2]'");