Home | History | Annotate | Download | only in src

Lines Matching defs:Compile

471   if (!ScriptCompiler::Compile(context, &source).ToLocal(&script)) return false;
2050 // If execution is terminating, Compile(..)->Run() requires this
2133 TRACE_EVENT0(TRACE_DISABLED_BY_DEFAULT("v8.compile"), "V8.CompileScript");
2186 "v8::ScriptCompiler::CompileModule must be used to compile modules");
2197 "v8::ScriptCompiler::CompileModule must be used to compile modules");
2203 MaybeLocal<Script> ScriptCompiler::Compile(Local<Context> context,
2207 !source->GetResourceOptions().IsModule(), "v8::ScriptCompiler::Compile",
2208 "v8::ScriptCompiler::CompileModule must be used to compile modules");
2218 Local<Script> ScriptCompiler::Compile(
2223 RETURN_TO_LOCAL_UNCHECKED(Compile(context, source, options), Script);
2423 MaybeLocal<Script> ScriptCompiler::Compile(Local<Context> context,
2427 PREPARE_FOR_EXECUTION(context, ScriptCompiler, Compile, Script);
2485 Local<Script> ScriptCompiler::Compile(Isolate* v8_isolate,
2491 Compile(context, v8_source, full_source_string, origin), Script);
2502 MaybeLocal<Script> Script::Compile(Local<Context> context, Local<String> source,
2506 return ScriptCompiler::Compile(context, &script_source);
2509 return ScriptCompiler::Compile(context, &script_source);
2513 Local<Script> Script::Compile(v8::Local<String> source,
2517 RETURN_TO_LOCAL_UNCHECKED(Compile(context, source, origin), Script);
2521 Local<Script> Script::Compile(v8::Local<String> source,
2526 return Compile(context, source, &origin).FromMaybe(Local<Script>());
7570 return Compile(isolate, wire_bytes.first, wire_bytes.second);
7573 MaybeLocal<WasmCompiledModule> WasmCompiledModule::Compile(Isolate* isolate,