Package tree.statement

Examples of tree.statement.BlockScope


            visit(x, funEnv);
        }
       
        node.updateInfo();       
       
        BlockScope blockScope = node.getBlockScope();

        visit(blockScope, funEnv);
        if (node.isUndefinedType())
        {
            node.setHaxeType(TypeUtils.getVoid());
View Full Code Here


        if (inherits != null)
        {
            env.putWithCustomName("super", inherits);
        }
       
        BlockScope blockScope = node.getBlockScope();
       
        visit(blockScope, env);
    }
View Full Code Here

   * @return the all declared vars
   */
  public List<HaxeTree> getAllMembers() {
    List<HaxeTree> list = new ArrayList<HaxeTree>();

    BlockScope blockScope = getBlockScope();
    if (blockScope == null)
    {
        return list;
    }
    for (HaxeTree x: blockScope.getChildren())
      if (x instanceof Declaration)
        list.add(x);
    return list;
  }
View Full Code Here

TOP

Related Classes of tree.statement.BlockScope

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.