Package com.intellij.lang.javascript.psi.resolve

Examples of com.intellij.lang.javascript.psi.resolve.ImplicitJSVariableImpl


          @Override
          public void visitAngularJSRepeatExpression(AngularJSRepeatExpression repeatExpression) {
            if (scopeMatches(original, repeatExpression)) {
              for (Map.Entry<String, String> entry : NG_REPEAT_IMPLICITS.entrySet()) {
                consumer.consume(new ImplicitJSVariableImpl(entry.getKey(), entry.getValue(), repeatExpression));
              }
            }
            super.visitAngularJSRepeatExpression(repeatExpression);
          }
        });
View Full Code Here

TOP

Related Classes of com.intellij.lang.javascript.psi.resolve.ImplicitJSVariableImpl

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.