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 debug event handler which just counts the number of break points hit.
36 if (event == Debug.DebugEvent.Break) {
41 // Add the debug event listener.
42 Debug.setListener(listener);
52 bp1 = Debug.setBreakPoint(f);
55 Debug.changeBreakPointIgnoreCount(bp1, 1);
62 bp2 = Debug.setBreakPoint(f);
67 Debug.changeBreakPointIgnoreCount(bp1, 2);
68 Debug.changeBreakPointIgnoreCount(bp2, 4);
79 Debug.changeBreakPointIgnoreCount(bp1, 4);
80 Debug.changeBreakPointIgnoreCount(bp2, 2);