Package xscript.compiler

Examples of xscript.compiler.XLineDesk


 
  public XClassDecl annotationDecl(XModifier modifier){
    startLineBlock();
    expected(XTokenKind.ANNOTATION);
    String name = ident();
    XLineDesk line = endLineBlock();
    List<XTree> body = annotationBody(name);
    return new XClassDecl(line, modifier, name, null, new ArrayList<XTree.XType>(), body);
  }
View Full Code Here

TOP

Related Classes of xscript.compiler.XLineDesk

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.