Examples of HaxeAnnotatingVisitor


Examples of com.intellij.plugins.haxe.ide.annotator.HaxeAnnotatingVisitor

  @Nullable
  @Override
  public ProblemDescriptor[] checkFile(@NotNull PsiFile file, @NotNull final InspectionManager manager, final boolean isOnTheFly) {
    final List<ProblemDescriptor> result = new ArrayList<ProblemDescriptor>();
    new HaxeAnnotatingVisitor() {
      @Override
      protected void handleUnresolvedReference(HaxeReferenceExpression reference) {
        result.add(manager.createProblemDescriptor(
          reference,
          TextRange.from(0, reference.getTextLength()),
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.