Package org.angularjs.lang.lexer

Source Code of org.angularjs.lang.lexer.AngularJSLexer

package org.angularjs.lang.lexer;

import com.intellij.lang.javascript.JSTokenTypes;
import com.intellij.lexer.FlexAdapter;
import com.intellij.lexer.MergingLexerAdapter;
import com.intellij.psi.tree.TokenSet;

import java.io.Reader;

/**
* @author Dennis.Ushakov
*/
public class AngularJSLexer extends MergingLexerAdapter {
  public AngularJSLexer() {
    super(new FlexAdapter(new _AngularJSLexer((Reader)null)), TokenSet.create(JSTokenTypes.STRING_LITERAL));
  }
}
TOP

Related Classes of org.angularjs.lang.lexer.AngularJSLexer

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.