HomeSort by relevance Sort by last modified time
    Searched full:debuggerscript (Results 1 - 2 of 2) sorted by null

  /external/v8/src/inspector/
debugger-script.js 34 var DebuggerScript = {};
37 DebuggerScript._scopeTypeNames = new Map();
38 DebuggerScript._scopeTypeNames.set(ScopeType.Global, "global");
39 DebuggerScript._scopeTypeNames.set(ScopeType.Local, "local");
40 DebuggerScript._scopeTypeNames.set(ScopeType.With, "with");
41 DebuggerScript._scopeTypeNames.set(ScopeType.Closure, "closure");
42 DebuggerScript._scopeTypeNames.set(ScopeType.Catch, "catch");
43 DebuggerScript._scopeTypeNames.set(ScopeType.Block, "block");
44 DebuggerScript._scopeTypeNames.set(ScopeType.Script, "script");
45 DebuggerScript._scopeTypeNames.set(ScopeType.Eval, "eval")
    [all...]
v8-debugger.cc 150 v8::Local<v8::Object> debuggerScript = m_debuggerScript.Get(m_isolate);
152 debuggerScript
157 return function->Call(context, debuggerScript, argc, argv);
159 return function->Call(context, debuggerScript, argc, argv);
    [all...]

Completed in 1053 milliseconds