Lines Matching defs:function
29 function((FLAG_allow_natives_syntax = true, NewFunction(source))),
31 Compile(function);
40 function(NewFunction(BuildFunction(param_count).c_str())),
47 function(
51 Compile(function);
52 function->ReplaceCode(*code);
56 Handle<JSFunction> function;
59 return Execution::Call(isolate, function, undefined(), 0, nullptr);
64 return Execution::Call(isolate, function, undefined(), 2, args);
70 return Execution::Call(isolate, function, undefined(), 4, args);
135 *v8::Local<v8::Function>::Cast(CompileRun(source))));
165 Handle<JSFunction> Compile(Handle<JSFunction> function) {
168 ParseInfo parse_info(&zone, function);
173 info.SetOptimizing(BailoutId::None(), Handle<Code>(function->code()));
191 function->ReplaceCode(*code);
192 return function;
199 p = *f.function;
208 std::string function_string = "(function(";
226 // Compile the given machine graph instead of the source of the function
230 ParseInfo parse_info(&zone, function);
235 Handle<Code>(function->shared()->code()));
241 function->ReplaceCode(*code);
242 return function;