Home | History | Annotate | Download | only in inspector

Lines Matching refs:script

83     v8::Local<v8::Context> context, v8::Local<v8::Script> script) {
88 agent->willExecuteScript(script->GetUnboundScript()->GetId());
89 v8::MaybeLocal<v8::Value> result = script->Run(context);
90 // Get agent from the map again, since it could have detached during script
107 // Get agent from the map again, since it could have detached during script
116 v8::Local<v8::Script> script =
118 if (script.IsEmpty()) return v8::MaybeLocal<v8::Value>();
121 return script->Run(context);
124 v8::Local<v8::Script> V8InspectorImpl::compileScript(
136 v8::Local<v8::Script> script;
139 .ToLocal(&script))
140 return v8::Local<v8::Script>();
141 return script;