Home | History | Annotate | Download | only in mjsunit

Lines Matching full:debug

28 // Flags: --expose-debug-as debug
29 // Get the Debug object exposed from the debug context global object.
30 Debug = debug.Debug
32 // Simple function which stores the last debug event.
61 if (event == Debug.DebugEvent.Break) {
62 // Get the debug command processor.
89 // Add the debug event listener.
90 Debug.setListener(listener);
94 // Set a break point and call to invoke the debug event listener.
95 breakpoint = Debug.setBreakPoint(g, 0, 0);
98 // Make sure that the debug event listener vas invoked.