Package org.intellij.jflex.editor

Examples of org.intellij.jflex.editor.JFlexBraceMatcher


* @author gregsh
*/
public class JFlexParserUtil extends GeneratedParserUtilBase {
  public static PsiBuilder adapt_builder_(IElementType root, PsiBuilder builder, PsiParser parser, TokenSet[] extendsSets) {
    PsiBuilder result = GeneratedParserUtilBase.adapt_builder_(root, builder, parser, extendsSets);
    ErrorState.get(result).braces = new JFlexBraceMatcher().getPairs();
    ErrorState.get(result).altMode = true;
    return result;
  }
View Full Code Here

TOP

Related Classes of org.intellij.jflex.editor.JFlexBraceMatcher

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.