Class DummyDebugger

java.lang.Object
org.eclipse.m2m.atl.engine.vm.DummyDebugger
All Implemented Interfaces:
Debugger

public class DummyDebugger extends Object implements Debugger
A do-nothing ATL VM debugger.
  • Constructor Details

    • DummyDebugger

      public DummyDebugger()
  • Method Details

    • enter

      public void enter(StackFrame frame)
      Description copied from interface: Debugger
      Enters the frame.
      Specified by:
      enter in interface Debugger
      Parameters:
      frame - the frame to enter in
    • leave

      public void leave(StackFrame frame)
      Description copied from interface: Debugger
      Leaves the frame.
      Specified by:
      leave in interface Debugger
      Parameters:
      frame - the frame to leave
    • step

      public void step(ASMStackFrame frame)
      Description copied from interface: Debugger
      Steps into the frame.
      Specified by:
      step in interface Debugger
      Parameters:
      frame - the frame to step
    • error

      public void error(StackFrame frame, String msg, Exception e)
      Description copied from interface: Debugger
      Throws an error.
      Specified by:
      error in interface Debugger
      Parameters:
      frame - the current frame
      msg - the error message
      e - the exception
    • terminated

      public void terminated()
      Description copied from interface: Debugger
      Terminates the execution.
      Specified by:
      terminated in interface Debugger