Lines Matching refs:v8
30 V8Debugger(v8::Isolate*, V8InspectorImpl*);
33 static int contextId(v8::Local<v8::Context>);
34 static int getGroupId(v8::Local<v8::Context>);
45 v8::DebugInterface::ExceptionBreakState getPauseOnExceptionsState();
46 void setPauseOnExceptionsState(v8::DebugInterface::ExceptionBreakState);
57 const String16& sourceID, v8::Local<v8::String> newSource, bool dryRun,
73 v8::Local<v8::Context> pausedContext() { return m_pausedContext; } in pausedContext()
78 std::unique_ptr<V8StackTraceImpl> createStackTrace(v8::Local<v8::StackTrace>);
81 v8::MaybeLocal<v8::Array> internalProperties(v8::Local<v8::Context>,
82 v8::Local<v8::Value>);
99 v8::MaybeLocal<v8::Value> callDebuggerMethod(const char* functionName,
101 v8::Local<v8::Value> argv[]);
102 v8::Local<v8::Context> debuggerContext() const;
105 static void breakProgramCallback(const v8::FunctionCallbackInfo<v8::Value>&);
106 void handleProgramBreak(v8::Local<v8::Context> pausedContext,
107 v8::Local<v8::Object> executionState,
108 v8::Local<v8::Value> exception,
109 v8::Local<v8::Array> hitBreakpoints,
112 static void v8DebugEventCallback(const v8::DebugInterface::EventDetails&);
113 v8::Local<v8::Value> callInternalGetterFunction(v8::Local<v8::Object>,
115 void handleV8DebugEvent(const v8::DebugInterface::EventDetails&);
116 void handleV8AsyncTaskEvent(v8::Local<v8::Context>,
117 v8::Local<v8::Object> executionState,
118 v8::Local<v8::Object> eventData);
120 v8::Local<v8::Value> collectionEntries(v8::Local<v8::Context>,
121 v8::Local<v8::Object>);
122 v8::Local<v8::Value> generatorObjectLocation(v8::Local<v8::Context>,
123 v8::Local<v8::Object>);
124 v8::Local<v8::Value> functionLocation(v8::Local<v8::Context>,
125 v8::Local<v8::Function>);
126 v8::MaybeLocal<v8::Value> functionScopes(v8::Local<v8::Context>,
127 v8::Local<v8::Function>);
129 v8::Isolate* m_isolate;
134 v8::Global<v8::Object> m_debuggerScript;
135 v8::Global<v8::Context> m_debuggerContext;
136 v8::Local<v8::Object> m_executionState;
137 v8::Local<v8::Context> m_pausedContext;
150 v8::DebugInterface::ExceptionBreakState m_pauseOnExceptionsState;