Package cz.juzna.latte.psi.impl

Examples of cz.juzna.latte.psi.impl.LattePsiElement


    public PsiElement createElement(ASTNode node) {
      IElementType type = node.getElementType();

      if(type == LatteTokenTypes.MACRO_NODE) return new MacroNodeImpl(node);
      else if(type == LatteTokenTypes.MACRO_ATTR) return new MacroAttrImpl(node);
      else return new LattePsiElement(node);
    }
View Full Code Here

TOP

Related Classes of cz.juzna.latte.psi.impl.LattePsiElement

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.