Home | History | Annotate | Download | only in mjsunit

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
35 // Simple debug event handler which counts the number of breaks hit and steps.
39 if (event == Debug.DebugEvent.Break) {
43 exec_state.prepareStep(Debug.StepAction.StepOut, step_out_count);
65 // Add the debug event listener.
66 Debug.setListener(listener);
105 // Get rid of the debug event listener.
106 Debug.setListener(null);