Home | History | Annotate | Download | only in inspector

Lines Matching full:debuggerscript

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");
46 DebuggerScript._scopeTypeNames.set(ScopeType.Module, "module");
52 DebuggerScript.getFunctionScopes = function(fun)
64 var scopeObject = DebuggerScript._buildScopeObject(scopeDetails.type(), scopeDetails.object());
68 type: /** @type {string} */(DebuggerScript._scopeTypeNames.get(scopeDetails.type())),
80 DebuggerScript.getGeneratorScopes = function(gen)
92 var scopeObject = DebuggerScript._buildScopeObject(scopeDetails.type(), scopeDetails.object());
96 type: /** @type {string} */(DebuggerScript._scopeTypeNames.get(scopeDetails.type())),
109 DebuggerScript.setBreakpoint = function(execState, info)
124 DebuggerScript.removeBreakpoint = function(execState, info)
134 DebuggerScript.currentCallFrames = function(execState, limit)
138 frames.push(DebuggerScript._frameMirrorToJSCallFrame(execState.frame(i)));
152 DebuggerScript.liveEditScriptSource = function(scriptId, newSource, preview)
184 DebuggerScript.clearBreakpoints = function(execState)
192 DebuggerScript.getBreakpointNumbers = function(breakpoints)
213 DebuggerScript._frameMirrorToJSCallFrame = function(frameMirror)
289 var scopeObject = DebuggerScript._buildScopeObject(scopeTypes[i], scopeObjects[i]);
327 "type": /** @type {string} */(DebuggerScript._scopeTypeNames.get(scopeTypes[i])),
457 DebuggerScript._buildScopeObject = function(scopeType, scopeObject)
497 return DebuggerScript;