Package flash.tools.debugger.expression

Examples of flash.tools.debugger.expression.ASTBuilder


   * We can get at files by name or module id, eventually we will put functions in here too
   */

  public ExpressionCache(DebugCLI cli)
  {
    m_builder = new ASTBuilder(true); // allow fdb's "*x" and "x." indirection operators
    m_expressions = new Vector<Object>();
    m_props = new IntProperties();
    m_cli = cli;
  }
View Full Code Here


   * We can get at files by name or module id, eventually we will put functions in here too
   */

  public ExpressionCache(DebugCLI cli)
  {
    m_builder = new ASTBuilder(true); // allow fdb's "*x" and "x." indirection operators
    m_expressions = new Vector<Object>();
    m_props = new IntProperties();
    m_cli = cli;
  }
View Full Code Here

   * We can get at files by name or module id, eventually we will put functions in here too
   */

  public ExpressionCache(DebugCLI cli)
  {
    m_builder = new ASTBuilder(true); // allow fdb's "*x" and "x." indirection operators
    m_expressions = new Vector<Object>();
    m_props = new IntProperties();
    m_cli = cli;
  }
View Full Code Here

TOP

Related Classes of flash.tools.debugger.expression.ASTBuilder

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.