Package etch.compiler.ast

Examples of etch.compiler.ast.Name


   * @return the Name with ID token.
   */
  protected Name newName( String name )
  {
    Token t = newId( name );
    return new Name( t, name );
  }
View Full Code Here


   * @return the Name with ID token.
   */
  protected Name newName( String name )
  {
    Token t = newId( name );
    return new Name( t, name );
  }
View Full Code Here

TOP

Related Classes of etch.compiler.ast.Name

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.