Package org.angularjs.lang.psi

Examples of org.angularjs.lang.psi.AngularJSFilterExpression


  public PsiElement createElement(ASTNode node) {
    final IElementType type = node.getElementType();
    if (type == AngularJSElementTypes.REPEAT_EXPRESSION) {
      return new AngularJSRepeatExpression(node);
    } else if (type == AngularJSElementTypes.FILTER_EXPRESSION) {
      return new AngularJSFilterExpression(node);
    } else if (type == AngularJSElementTypes.AS_EXPRESSION) {
      return new AngularJSAsExpression(node);
    }
    return super.createElement(node);
  }
View Full Code Here

TOP

Related Classes of org.angularjs.lang.psi.AngularJSFilterExpression

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.