Lines Matching refs:v8
55 V8InspectorImpl(v8::Isolate*, V8InspectorClient*);
58 v8::Isolate* isolate() const { return m_isolate; } in isolate()
62 v8::MaybeLocal<v8::Value> runCompiledScript(v8::Local<v8::Context>,
63 v8::Local<v8::Script>);
64 v8::MaybeLocal<v8::Value> callFunction(v8::Local<v8::Function>,
65 v8::Local<v8::Context>,
66 v8::Local<v8::Value> receiver,
67 int argc, v8::Local<v8::Value> info[]);
68 v8::MaybeLocal<v8::Value> compileAndRunInternalScript(v8::Local<v8::Context>,
69 v8::Local<v8::String>);
70 v8::Local<v8::Script> compileScript(v8::Local<v8::Context>,
71 v8::Local<v8::String>,
74 v8::Local<v8::Context> regexContext();
81 void contextDestroyed(v8::Local<v8::Context>) override;
83 void willExecuteScript(v8::Local<v8::Context>, int scriptId) override;
84 void didExecuteScript(v8::Local<v8::Context>) override;
87 unsigned exceptionThrown(v8::Local<v8::Context>, const StringView& message,
88 v8::Local<v8::Value> exception,
93 void exceptionRevoked(v8::Local<v8::Context>, unsigned exceptionId,
96 v8::Local<v8::StackTrace>) override;
124 v8::Isolate* m_isolate;
127 v8::Global<v8::Context> m_regexContext;