Package com.jetbrains.lang.dart.lexer

Examples of com.jetbrains.lang.dart.lexer.DartDocLexer


    @Override
    public ASTNode parseContents(final ASTNode chameleon) {
      final PsiBuilder builder = PsiBuilderFactory.getInstance().createBuilder(chameleon.getTreeParent().getPsi().getProject(),
                                                                               chameleon,
                                                                               new DartDocLexer(),
                                                                               getLanguage(),
                                                                               chameleon.getChars());
      doParse(builder);
      return builder.getTreeBuilt().getFirstChildNode();
    }
View Full Code Here

TOP

Related Classes of com.jetbrains.lang.dart.lexer.DartDocLexer

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.