Home | History | Annotate | Download | only in harmony

Lines Matching defs:Debug

28 // Flags: --expose-debug-as debug --harmony-scoping
35 // Get the Debug object exposed from the debug context global object.
36 var Debug = debug.Debug;
47 // Debug event listener which delegates.
50 if (event == Debug.DebugEvent.Break) {
60 // Add the debug event listener.
61 Debug.setListener(listener);
92 if (scopes[i] == debug.ScopeType.Global) {
99 // Get the debug command processor.
111 if (scopes[i] == debug.ScopeType.Local ||
112 scopes[i] == debug.ScopeType.Closure) {
172 // Get the debug command processor.
184 if (scope.scopeType() == debug.ScopeType.Local ||
185 scope.scopeType() == debug.ScopeType.Closure) {
208 CheckScopeChain([debug.ScopeType.Local,
209 debug.ScopeType.Global], exec_state);
226 CheckScopeChain([debug.ScopeType.Local,
227 debug.ScopeType.Global], exec_state);
243 CheckScopeChain([debug.ScopeType.Local,
244 debug.ScopeType.Global], exec_state);
261 CheckScopeChain([debug.ScopeType.Local,
262 debug.ScopeType.Global], exec_state);
280 CheckScopeChain([debug.ScopeType.Block,
281 debug.ScopeType.Local,
282 debug.ScopeType.Global], exec_state);
302 CheckScopeChain([debug.ScopeType.Block,
303 debug.ScopeType.Local,
304 debug.ScopeType.Global], exec_state);
325 CheckScopeChain([debug.ScopeType.Block,
326 debug.ScopeType.Local,
327 debug.ScopeType.Global], exec_state);
353 CheckScopeChain([debug.ScopeType.Local,
354 debug.ScopeType.Block,
355 debug.ScopeType.Closure,
356 debug.ScopeType.Global], exec_state);
374 CheckScopeChain([debug.ScopeType.Block,
375 debug.ScopeType.Local,
376 debug.ScopeType.Global], exec_state);
397 CheckScopeChain([debug.ScopeType.Block,
398 debug.ScopeType.Block,
399 debug.ScopeType.Local,
400 debug.ScopeType.Global], exec_state);
420 CheckScopeChain([debug.ScopeType.Block,
421 debug.ScopeType.Local,
422 debug.ScopeType.Global], exec_state);
441 CheckScopeChain([debug.ScopeType.Block,
442 debug.ScopeType.Block,
443 debug.ScopeType.Local,
444 debug.ScopeType.Global], exec_state);
463 CheckScopeChain([debug.ScopeType.Block,
464 debug.ScopeType.Local,
465 debug.ScopeType.Global], exec_state);