Lines Matching refs:debug
28 // Flags: --expose-debug-as debug
30 // Get the Debug object exposed from the debug context global object.
31 Debug = debug.Debug
38 // Simple debug event handler which first time will cause 'step in' action
43 if (event == Debug.DebugEvent.Break) {
45 exec_state.prepareStep(Debug.StepAction.StepIn, 2);
59 // Add the debug event listener.
60 Debug.setListener(listener);
77 // Get rid of the debug event listener.
78 Debug.setListener(null);