Package flash.tools.debugger

Examples of flash.tools.debugger.Session


  }

  // Extended low level break information
  public static void appendBreakInfo(DebugCLI cli, StringBuilder sb, boolean includeFault) throws NotConnectedException
  {
    Session session = cli.getSession();
    FileInfoCache fileInfo = cli.getFileCache();

    int reason = session.suspendReason();
    int offset = ((PlayerSession)session).getSuspendOffset();
    int index = ((PlayerSession)session).getSuspendActionIndex();

    SwfInfo info = null;
    try { info = fileInfo.getSwfs()[index]; } catch(ArrayIndexOutOfBoundsException oobe) {}
View Full Code Here


  {
    cli.waitTilHalted();
    try
    {
      // an integer followed by a variable name
      Session session = cli.getSession();
      long id = cli.nextLongToken();
      String name = (cli.hasMoreTokens()) ? cli.nextToken() : null;

      StringBuilder sb = new StringBuilder();
      sb.append(name);
View Full Code Here

     boolean functionNamed = false;
    int numLines = 0;
     try
     {
      FileInfoCache fileInfo = cli.getFileCache();
      Session session = cli.getSession();
      if (cli.hasMoreTokens())
       {
        arg1 = cli.nextToken();
        if (arg1.equals("-")) //$NON-NLS-1$
        {
View Full Code Here

TOP

Related Classes of flash.tools.debugger.Session

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.