Package com.intellij.plugins.haxe.hxml.lexer

Examples of com.intellij.plugins.haxe.hxml.lexer.HXMLLexer


  private static final TextAttributesKey[] EMPTY_KEYS = new TextAttributesKey[0];

  @NotNull
  @Override
  public Lexer getHighlightingLexer() {
    return new FlexAdapter(new HXMLLexer((Reader)null));
  }
View Full Code Here


  public static final IFileElementType FILE = new IFileElementType(Language.<HXMLLanguage>findInstance(HXMLLanguage.class));

  @NotNull
  @Override
  public Lexer createLexer(Project project) {
    return new FlexAdapter(new HXMLLexer((Reader) null));
  }
View Full Code Here

TOP

Related Classes of com.intellij.plugins.haxe.hxml.lexer.HXMLLexer

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.