Package com.intellij.plugins.haxe.lang.lexer

Examples of com.intellij.plugins.haxe.lang.lexer.HaxeLexer


import org.jetbrains.annotations.NotNull;

public class HaxeParserDefinition implements ParserDefinition {
  @NotNull
  public Lexer createLexer(Project project) {
    return new HaxeLexer(project);
  }
View Full Code Here


    fillMap(ATTRIBUTES, CONDITIONALLY_NOT_COMPILED, HaxeSyntaxHighlighterColors.CONDITIONALLY_NOT_COMPILED);
  }

  @NotNull
  public Lexer getHighlightingLexer() {
    return new HaxeLexer(myProject);
  }
View Full Code Here

TOP

Related Classes of com.intellij.plugins.haxe.lang.lexer.HaxeLexer

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.