Examples of DebuggerValue


Examples of flash.tools.debugger.expression.DebuggerEvaluator.DebuggerValue

  public Object evaluate(Context context) throws NumberFormatException,
      NoSuchVariableException, PlayerFaultException, PlayerDebugException {
    assert m_cx.getScopeDepth() == 0;
    m_cx.pushScope(new ExpressionEvaluatorScope(context));
    try {
      DebuggerValue value = (DebuggerValue) m_programNode.evaluate(m_cx, new DebuggerEvaluator());
      if (isLookupMembers()) {
        return context.lookupMembers(value.debuggerValue);
      } else {
        return value.debuggerValue;
      }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.