Package flash.tools.debugger.events

Examples of flash.tools.debugger.events.BreakEvent


      int line = DLocation.decodeLine(bp);
      if (m_wideLines) {
        module = (int)wideModule;
        line = (int)wideLine;
      }
      addEvent(new BreakEvent(module, line, targetIsolate));
      break;
    }

    case DMessage.InContinue: {
      /* we are running again so trash all our variable contents */
 
View Full Code Here


        //System.out.println("InBreakAt");

        int module = DLocation.decodeFile(bp);
        int  line = DLocation.decodeLine (bp);
        addEvent(new BreakEvent(module, line));
        break;
      }

      case DMessage.InContinue:
      {
View Full Code Here

TOP

Related Classes of flash.tools.debugger.events.BreakEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.