Lines Matching refs:debug
28 // Flags: --expose-debug-as debug
29 // Get the Debug object exposed from the debug context global object.
30 Debug = debug.Debug
39 // Simple debug event handler which first time will cause 'step in' action
44 if (event == Debug.DebugEvent.Break) {
47 exec_state.prepareStep(Debug.StepAction.StepIn, step_in_count);
61 // Add the debug event listener.
62 Debug.setListener(listener);
90 // Set a break point and call to invoke the debug event listener.
91 Debug.setBreakPoint(testFunction, 1, 0);
106 // Set a break point and call to invoke the debug event listener.
107 Debug.setBreakPoint(testFunction2, 2, 0);
114 // Get rid of the debug event listener.
115 Debug.setListener(null);