Lines Matching refs:Compile
57 static Handle<JSFunction> Compile(const char* source) {
80 Handle<JSFunction> fun = Compile(buffer.start());
97 Handle<JSFunction> fun = Compile("result = x + y;");
116 Handle<JSFunction> fun = Compile("if (x < 0) result = -x; else result = x;");
135 Compile("s = 0; while (n > 0) { s += n; n -= 1; }; result = s;");
157 Handle<JSFunction> fun = Compile(source);
188 Handle<JSFunction> fun = Compile(source);
202 Handle<JSFunction> fun = Compile(source);
226 Handle<JSFunction> fun0 = Compile(source);
284 v8::Script::Compile(script_body, &origin)->Run();