Home | History | Annotate | Download | only in cctest

Lines Matching full:fun2

209   v8::Handle<v8::FunctionTemplate> fun2 =
215 env->Global()->Set(v8_str("Fun2"), fun2->GetFunction());
217 "Fun2(new Cons1(), new Cons2(), new Cons3()) =="
222 "Fun2(new Cons1(), new Cons2(), 5) == '[object Cons1],[object Cons2],'");
226 "Fun2(new Cons3(), new Cons2(), new Cons1()) == ',[object Cons2],'");
230 "Fun2(new Cons1(), new Cons2(), new Cons3(), 'd') == "
235 "Fun2(new Cons1(), new Cons2()) == '[object Cons1],[object Cons2]'");
1689 const char* fun2 = "f(11)";
1691 Local<v8::Array>::Cast(Script::Compile(String::New(fun2))->Run());