Java Code Examples for com.intellij.lexer.Lexer#getTokenType()
The following examples show how to use
com.intellij.lexer.Lexer#getTokenType() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: SoyLexer.java From bamboo-soy with Apache License 2.0 | 6 votes |
@Override public MergeFunction getMergeFunction() { return ((final IElementType type, final Lexer originalLexer) -> { if (type == SoyTypes.OTHER || type == TokenType.WHITE_SPACE) { IElementType returnType = type; while (originalLexer.getTokenType() == SoyTypes.OTHER || originalLexer.getTokenType() == TokenType.WHITE_SPACE) { if (originalLexer.getTokenType() == SoyTypes.OTHER) { returnType = SoyTypes.OTHER; } originalLexer.advance(); } return returnType; } return type; }); }
Example 2
Source File: FilePackageSetParserExtension.java From consulo with Apache License 2.0 | 6 votes |
@Override @Nullable public String parseScope(Lexer lexer) { if (lexer.getTokenType() != ScopeTokenTypes.IDENTIFIER) return null; String id = getTokenText(lexer); if (FilePatternPackageSet.SCOPE_FILE.equals(id)) { final CharSequence buf = lexer.getBufferSequence(); final int end = lexer.getTokenEnd(); final int bufferEnd = lexer.getBufferEnd(); if (end >= bufferEnd || buf.charAt(end) != ':' && buf.charAt(end) != '[') { return null; } lexer.advance(); return FilePatternPackageSet.SCOPE_FILE; } return null; }
Example 3
Source File: MacroParser.java From consulo with Apache License 2.0 | 6 votes |
private static Expression parseVariable(Lexer lexer, String expression) { String variableName = getString(lexer, expression); advance(lexer); if (lexer.getTokenType() == null) { if (TemplateImpl.END.equals(variableName)) { return new EmptyNode(); } return new VariableNode(variableName, null); } if (lexer.getTokenType() != MacroTokenType.EQ) { return new VariableNode(variableName, null); } advance(lexer); Expression node = parseMacro(lexer, expression); return new VariableNode(variableName, node); }
Example 4
Source File: HaxeProjectStructureDetector.java From intellij-haxe with Apache License 2.0 | 6 votes |
@Nullable static String readQualifiedName(final CharSequence charSequence, final Lexer lexer, boolean allowStar) { final StringBuilder buffer = StringBuilderSpinAllocator.alloc(); try { while (true) { if (lexer.getTokenType() != HaxeTokenTypes.ID && !(allowStar && lexer.getTokenType() != HaxeTokenTypes.OMUL)) break; buffer.append(charSequence, lexer.getTokenStart(), lexer.getTokenEnd()); if (lexer.getTokenType() == HaxeTokenTypes.OMUL) break; lexer.advance(); if (lexer.getTokenType() != HaxeTokenTypes.ODOT) break; buffer.append('.'); lexer.advance(); } String packageName = buffer.toString(); if (StringUtil.endsWithChar(packageName, '.')) return null; return packageName; } finally { StringBuilderSpinAllocator.dispose(buffer); } }
Example 5
Source File: SelectWordUtil.java From consulo with Apache License 2.0 | 6 votes |
public static void addWordHonoringEscapeSequences(CharSequence editorText, TextRange literalTextRange, int cursorOffset, Lexer lexer, List<TextRange> result) { lexer.start(editorText, literalTextRange.getStartOffset(), literalTextRange.getEndOffset()); while (lexer.getTokenType() != null) { if (lexer.getTokenStart() <= cursorOffset && cursorOffset < lexer.getTokenEnd()) { if (StringEscapesTokenTypes.STRING_LITERAL_ESCAPES.contains(lexer.getTokenType())) { result.add(new TextRange(lexer.getTokenStart(), lexer.getTokenEnd())); } else { TextRange word = getWordSelectionRange(editorText, cursorOffset, JAVA_IDENTIFIER_PART_CONDITION); if (word != null) { result.add(new TextRange(Math.max(word.getStartOffset(), lexer.getTokenStart()), Math.min(word.getEndOffset(), lexer.getTokenEnd()))); } } break; } lexer.advance(); } }
Example 6
Source File: LexerTestCase.java From consulo with Apache License 2.0 | 6 votes |
protected void checkCorrectRestart(String text) { Lexer mainLexer = createLexer(); String allTokens = printTokens(text, 0, mainLexer); Lexer auxLexer = createLexer(); auxLexer.start(text); while (true) { IElementType type = auxLexer.getTokenType(); if (type == null) { break; } if (auxLexer.getState() == 0) { int tokenStart = auxLexer.getTokenStart(); String subTokens = printTokens(text, tokenStart, mainLexer); if (!allTokens.endsWith(subTokens)) { assertEquals("Restarting impossible from offset " + tokenStart + "; lexer state should not return 0 at this point", allTokens, subTokens); } } auxLexer.advance(); } }
Example 7
Source File: LexerTestCase.java From consulo with Apache License 2.0 | 6 votes |
public static String printTokens(CharSequence text, int start, Lexer lexer) { lexer.start(text, start, text.length()); String result = ""; while (true) { IElementType tokenType = lexer.getTokenType(); if (tokenType == null) { break; } String tokenText = getTokenText(lexer); String tokenTypeName = tokenType.toString(); String line = tokenTypeName + " ('" + tokenText + "')\n"; result += line; lexer.advance(); } return result; }
Example 8
Source File: LightLexerTestCase.java From consulo with Apache License 2.0 | 6 votes |
@Override public String transform(String testName, String[] data) throws Exception { final StringBuilder output = new StringBuilder(); Lexer lexer = getLexer(); final String text = data[0].replaceAll("$(\\n+)", ""); lexer.start(text); while (lexer.getTokenType() != null) { final int s = lexer.getTokenStart(); final int e = lexer.getTokenEnd(); final IElementType tokenType = lexer.getTokenType(); final String str = tokenType + ": [" + s + ", " + e + "], {" + text.substring(s, e) + "}\n"; output.append(str); lexer.advance(); } return output.toString(); }
Example 9
Source File: AndroidUtils.java From flutter-intellij with BSD 3-Clause "New" or "Revised" License | 5 votes |
@Nullable public static String isReservedKeyword(@NotNull String string) { Lexer lexer = JAVA_LEXER; lexer.start(string); if (lexer.getTokenType() != JavaTokenType.IDENTIFIER) { if (lexer.getTokenType() instanceof IKeywordElementType) { return "Package names cannot contain Java keywords like '" + string + "'"; } if (string.isEmpty()) { return "Package segments must be of non-zero length"; } return string + " is not a valid identifier"; } return null; }
Example 10
Source File: AndroidUtils.java From flutter-intellij with BSD 3-Clause "New" or "Revised" License | 5 votes |
@Nullable public static String isReservedKeyword(@NotNull String string) { Lexer lexer = JAVA_LEXER; lexer.start(string); if (lexer.getTokenType() != JavaTokenType.IDENTIFIER) { if (lexer.getTokenType() instanceof IKeywordElementType) { return "Package names cannot contain Java keywords like '" + string + "'"; } if (string.isEmpty()) { return "Package segments must be of non-zero length"; } return string + " is not a valid identifier"; } return null; }
Example 11
Source File: MacroParser.java From consulo with Apache License 2.0 | 5 votes |
@SuppressWarnings({"HardCodedStringLiteral"}) private static Expression parseMacro(Lexer lexer, String expression) { IElementType tokenType = lexer.getTokenType(); String token = getString(lexer, expression); if (tokenType == MacroTokenType.STRING_LITERAL) { advance(lexer); return new ConstantNode(parseStringLiteral(token)); } if (tokenType != MacroTokenType.IDENTIFIER) { LOG.info("Bad macro syntax: Not identifier: " + token); advance(lexer); return new ConstantNode(""); } List<Macro> macros = MacroFactory.getMacros(token); if (macros.isEmpty()) { return parseVariable(lexer, expression); } advance(lexer); MacroCallNode macroCallNode = new MacroCallNode(macros.get(0)); if (lexer.getTokenType() == null) { return macroCallNode; } if (lexer.getTokenType() != MacroTokenType.LPAREN) { return macroCallNode; } advance(lexer); parseParameters(macroCallNode, lexer, expression); if (lexer.getTokenType() != MacroTokenType.RPAREN) { LOG.info("Bad macro syntax: ) expected: " + expression); } advance(lexer); return macroCallNode; }
Example 12
Source File: LatteHtmlHighlightingLexer.java From intellij-latte with MIT License | 5 votes |
@Override protected void lookAhead(Lexer baseLexer) { IElementType currentToken = baseLexer.getTokenType(); if (currentToken != LatteTypes.T_TEXT && LatteHtmlUtil.HTML_TOKENS.contains(currentToken)) { advanceLexer(baseLexer); replaceCachedType(0, LatteTypes.T_TEXT); } else { super.lookAhead(baseLexer); } }
Example 13
Source File: Assert.java From intellij-latte with MIT License | 5 votes |
/** * Checks that given lexer returns the correct tokens. * * @param lexer * @param expectedTokens */ public static void assertTokens(Lexer lexer, Pair<IElementType, String>[] expectedTokens) { int i; for (i = 0; lexer.getTokenType() != null; i++) { if (i == expectedTokens.length) fail("Too many tokens from lexer; unexpected " + lexer.getTokenType()); assertEquals("Wrong token type at index " + i, expectedTokens[i].first, lexer.getTokenType()); assertEquals("Wrong token text at index " + i, expectedTokens[i].second, lexer.getTokenText()); lexer.advance(); } if (i < expectedTokens.length) fail("Not enough tokens from lexer; expected " + expectedTokens[i].first + " but got nothing."); }
Example 14
Source File: LexerTestCase.java From consulo with Apache License 2.0 | 5 votes |
private static String getTokenText(Lexer lexer) { final IElementType tokenType = lexer.getTokenType(); if (tokenType instanceof TokenWrapper) { return ((TokenWrapper)tokenType).getValue().toString(); } String text = lexer.getBufferSequence().subSequence(lexer.getTokenStart(), lexer.getTokenEnd()).toString(); text = StringUtil.replace(text, "\n", "\\n"); return text; }
Example 15
Source File: BaseFilterLexerUtil.java From consulo with Apache License 2.0 | 5 votes |
public static ScanContent scanContent(FileContent content, IdAndToDoScannerBasedOnFilterLexer indexer) { ScanContent data = content.getUserData(scanContentKey); if (data != null) { content.putUserData(scanContentKey, null); return data; } final boolean needTodo = content.getFile().getFileSystem() instanceof LocalFileSystem; final boolean needIdIndex = IdTableBuilding.getFileTypeIndexer(content.getFileType()) instanceof LexerBasedIdIndexer; final IdDataConsumer consumer = needIdIndex? new IdDataConsumer():null; final OccurrenceConsumer todoOccurrenceConsumer = new OccurrenceConsumer(consumer, needTodo); final Lexer filterLexer = indexer.createLexer(todoOccurrenceConsumer); filterLexer.start(content.getContentAsText()); while (filterLexer.getTokenType() != null) filterLexer.advance(); Map<TodoIndexEntry,Integer> todoMap = null; if (needTodo) { for (IndexPattern indexPattern : IndexPatternUtil.getIndexPatterns()) { final int count = todoOccurrenceConsumer.getOccurrenceCount(indexPattern); if (count > 0) { if (todoMap == null) todoMap = new THashMap<TodoIndexEntry, Integer>(); todoMap.put(new TodoIndexEntry(indexPattern.getPatternString(), indexPattern.isCaseSensitive()), count); } } } data = new ScanContent( consumer != null? consumer.getResult():Collections.<IdIndexEntry, Integer>emptyMap(), todoMap != null ? todoMap: Collections.<TodoIndexEntry,Integer>emptyMap() ); if (needIdIndex && needTodo) content.putUserData(scanContentKey, data); return data; }
Example 16
Source File: EnterHandler.java From consulo with Apache License 2.0 | 4 votes |
public static boolean isCommentComplete(PsiComment comment, CodeDocumentationAwareCommenter commenter, Editor editor) { for (CommentCompleteHandler handler : CommentCompleteHandler.EP_NAME.getExtensionList()) { if (handler.isApplicable(comment, commenter)) { return handler.isCommentComplete(comment, commenter, editor); } } String commentText = comment.getText(); final boolean docComment = isDocComment(comment, commenter); final String expectedCommentEnd = docComment ? commenter.getDocumentationCommentSuffix() : commenter.getBlockCommentSuffix(); if (!commentText.endsWith(expectedCommentEnd)) return false; final PsiFile containingFile = comment.getContainingFile(); final Language language = containingFile.getLanguage(); ParserDefinition parserDefinition = LanguageParserDefinitions.INSTANCE.forLanguage(language); if (parserDefinition == null) { return true; } Lexer lexer = parserDefinition.createLexer(containingFile.getLanguageVersion()); final String commentPrefix = docComment ? commenter.getDocumentationCommentPrefix() : commenter.getBlockCommentPrefix(); lexer.start(commentText, commentPrefix == null ? 0 : commentPrefix.length(), commentText.length()); QuoteHandler fileTypeHandler = TypedHandler.getQuoteHandler(containingFile, editor); JavaLikeQuoteHandler javaLikeQuoteHandler = fileTypeHandler instanceof JavaLikeQuoteHandler ? (JavaLikeQuoteHandler)fileTypeHandler : null; while (true) { IElementType tokenType = lexer.getTokenType(); if (tokenType == null) { return false; } if (javaLikeQuoteHandler != null && javaLikeQuoteHandler.getStringTokenTypes() != null && javaLikeQuoteHandler.getStringTokenTypes().contains(tokenType)) { String text = commentText.substring(lexer.getTokenStart(), lexer.getTokenEnd()); int endOffset = comment.getTextRange().getEndOffset(); if (text.endsWith(expectedCommentEnd) && endOffset < containingFile.getTextLength() && containingFile.getText().charAt(endOffset) == '\n') { return true; } } if (tokenType == commenter.getDocumentationCommentTokenType() || tokenType == commenter.getBlockCommentTokenType()) { return false; } if (tokenType == commenter.getLineCommentTokenType() && lexer.getTokenText().contains(commentPrefix)) { return false; } if (lexer.getTokenEnd() == commentText.length()) { if (tokenType == commenter.getLineCommentTokenType()) { String prefix = commenter.getLineCommentPrefix(); lexer.start(commentText, lexer.getTokenStart() + (prefix == null ? 0 : prefix.length()), commentText.length()); lexer.advance(); continue; } else if (isInvalidPsi(comment)) { return false; } return true; } lexer.advance(); } }
Example 17
Source File: MacroParser.java From consulo with Apache License 2.0 | 4 votes |
private static void skipWhitespaces(Lexer lexer) { while (lexer.getTokenType() == MacroTokenType.WHITE_SPACE) { lexer.advance(); } }
Example 18
Source File: ChunkExtractor.java From consulo with Apache License 2.0 | 4 votes |
@Nonnull public TextChunk[] createTextChunks(@Nonnull UsageInfo2UsageAdapter usageInfo2UsageAdapter, @Nonnull CharSequence chars, int start, int end, boolean selectUsageWithBold, @Nonnull List<TextChunk> result) { final Lexer lexer = myHighlighter.getHighlightingLexer(); final SyntaxHighlighterOverEditorHighlighter highlighter = myHighlighter; LOG.assertTrue(start <= end); int i = StringUtil.indexOf(chars, '\n', start, end); if (i != -1) end = i; if (myDocumentStamp != myDocument.getModificationStamp()) { highlighter.restart(chars); myDocumentStamp = myDocument.getModificationStamp(); } else if (lexer.getTokenType() == null || lexer.getTokenStart() > start) { highlighter.resetPosition(0); // todo restart from nearest position with initial state } boolean isBeginning = true; for (; lexer.getTokenType() != null; lexer.advance()) { int hiStart = lexer.getTokenStart(); int hiEnd = lexer.getTokenEnd(); if (hiStart >= end) break; hiStart = Math.max(hiStart, start); hiEnd = Math.min(hiEnd, end); if (hiStart >= hiEnd) { continue; } if (isBeginning) { String text = chars.subSequence(hiStart, hiEnd).toString(); if (text.trim().isEmpty()) continue; } isBeginning = false; IElementType tokenType = lexer.getTokenType(); TextAttributesKey[] tokenHighlights = highlighter.getTokenHighlights(tokenType); processIntersectingRange(usageInfo2UsageAdapter, chars, hiStart, hiEnd, tokenHighlights, selectUsageWithBold, result); } return result.toArray(new TextChunk[result.size()]); }
Example 19
Source File: FilePackageSetParserExtension.java From consulo with Apache License 2.0 | 4 votes |
private static String parseFilePattern(Lexer lexer) throws ParsingException { StringBuffer pattern = new StringBuffer(); boolean wasIdentifier = false; while (true) { if (lexer.getTokenType() == ScopeTokenTypes.DIV) { wasIdentifier = false; pattern.append("/"); } else if (lexer.getTokenType() == ScopeTokenTypes.IDENTIFIER || lexer.getTokenType() == ScopeTokenTypes.INTEGER_LITERAL) { if (wasIdentifier) error(lexer, AnalysisScopeBundle.message("error.packageset.token.expectations", getTokenText(lexer))); wasIdentifier = lexer.getTokenType() == ScopeTokenTypes.IDENTIFIER; pattern.append(getTokenText(lexer)); } else if (lexer.getTokenType() == ScopeTokenTypes.ASTERISK) { wasIdentifier = false; pattern.append("*"); } else if (lexer.getTokenType() == ScopeTokenTypes.DOT) { wasIdentifier = false; pattern.append("."); } else if (lexer.getTokenType() == ScopeTokenTypes.WHITE_SPACE) { wasIdentifier = false; pattern.append(" "); } else if (lexer.getTokenType() == ScopeTokenTypes.MINUS) { wasIdentifier = false; pattern.append("-"); } else if (lexer.getTokenType() == ScopeTokenTypes.TILDE) { wasIdentifier = false; pattern.append("~"); } else if (lexer.getTokenType() == ScopeTokenTypes.SHARP) { wasIdentifier = false; pattern.append("#"); } else { break; } lexer.advance(); } if (pattern.length() == 0) { error(lexer, AnalysisScopeBundle.message("error.packageset.pattern.expectations")); } return pattern.toString(); }
Example 20
Source File: UnescapingPsiBuilder.java From BashSupport with Apache License 2.0 | 4 votes |
private void initTokenListAndCharSequence(Lexer lexer) { lexer.start(processedText); myShrunkSequence = new ArrayList<MyShiftedToken>(512); //assume a larger token size by default StringBuilder charSequenceBuilder = new StringBuilder(); int realPos = 0; int shrunkPos = 0; while (lexer.getTokenType() != null) { final IElementType tokenType = lexer.getTokenType(); final String tokenText = lexer.getTokenText(); int tokenStart = lexer.getTokenStart(); int tokenEnd = lexer.getTokenEnd(); int realLength = tokenEnd - tokenStart; int delta = textProcessor.getContentRange().getStartOffset(); int originalStart = textProcessor.getOffsetInHost(tokenStart - delta); int originalEnd = textProcessor.getOffsetInHost(tokenEnd - delta); if (textProcessor.containsRange(tokenStart, tokenEnd) && originalStart != -1 && originalEnd != -1) { realLength = originalEnd - originalStart; int masqueLength = tokenEnd - tokenStart; myShrunkSequence.add(new MyShiftedToken(tokenType, realPos, realPos + realLength, shrunkPos, shrunkPos + masqueLength, tokenText)); charSequenceBuilder.append(tokenText); shrunkPos += masqueLength; } else { myShrunkSequence.add(new MyShiftedToken(tokenType, realPos, realPos + realLength, shrunkPos, shrunkPos + realLength, tokenText)); charSequenceBuilder.append(tokenText); shrunkPos += realLength; } realPos += realLength; lexer.advance(); } myShrunkCharSequence = charSequenceBuilder.toString(); myShrunkSequenceSize = myShrunkSequence.size(); }