Package flash.tools.debugger.expression.DebuggerEvaluator

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

Related Classes of flash.tools.debugger.expression.DebuggerEvaluator.DebuggerValue

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.