Package flash.tools.debugger

Examples of flash.tools.debugger.Value


    }

    if (e instanceof ExceptionFault)
    {
      ExceptionFault ef = (ExceptionFault) e;
      Value thrownValue = ef.getThrownValue();
      if (thrownValue != null)
      {
        if (!ef.willExceptionBeCaught())
        {
          stop = true;
        }
        else
        {
          stop = false;

          String typeName = thrownValue.getTypeName();
          int at = typeName.indexOf('@');
          if (at != -1)
            typeName = typeName.substring(0, at);

          for (int i=0; i<catchpointCount(); ++i)
View Full Code Here


      String name = (cli.hasMoreTokens()) ? cli.nextToken() : null;

      StringBuilder sb = new StringBuilder();
      sb.append(name);
      sb.append(" = "); //$NON-NLS-1$
      Value v = ((PlayerSession)session).getValue(id, name);
      ExpressionCache.appendVariableValue(sb, v);
      cli.out( sb.toString() );
    }
    catch(NullPointerException npe)
    {
View Full Code Here

TOP

Related Classes of flash.tools.debugger.Value

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.