mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-22 15:19:59 +07:00
16 lines
453 B
Java
16 lines
453 B
Java
package com.intellij.lexer;
|
|
|
|
import com.intellij.psi.JavaDocTokenType;
|
|
import com.intellij.psi.tree.IElementType;
|
|
import com.intellij.psi.tree.TokenSet;
|
|
|
|
public class JavaDocLexer extends MergingLexerAdapter {
|
|
private static final TokenSet TOKENS_TO_MERGE = TokenSet.create(new IElementType[]{
|
|
JavaDocTokenType.DOC_COMMENT_DATA,
|
|
JavaDocTokenType.DOC_SPACE
|
|
});
|
|
|
|
public JavaDocLexer() {
|
|
super(new _JavaDocLexer(), TOKENS_TO_MERGE);
|
|
}
|
|
} |