Skip to content
Snippets Groups Projects
Commit f4779cbc authored by Johannes Mey's avatar Johannes Mey
Browse files

fix defintion of comments to enable TODO etc

parent 6aa2c918
No related branches found
No related tags found
No related merge requests found
...@@ -20,7 +20,7 @@ import org.jetbrains.annotations.NotNull; ...@@ -20,7 +20,7 @@ import org.jetbrains.annotations.NotNull;
public class RelAstGrammarParserDefinition implements ParserDefinition { public class RelAstGrammarParserDefinition implements ParserDefinition {
public static final TokenSet WHITE_SPACES = TokenSet.create(TokenType.WHITE_SPACE); public static final TokenSet WHITE_SPACES = TokenSet.create(TokenType.WHITE_SPACE);
public static final TokenSet COMMENTS = TokenSet.create(RelAstGrammarTypes.COMMENT); public static final TokenSet COMMENTS = TokenSet.create(RelAstGrammarTypes.SINGLELINECOMMENT, RelAstGrammarTypes.DOCCOMMENT, RelAstGrammarTypes.MULTILINECOMMENT);
public static final IFileElementType FILE = new IFileElementType(RelAstGrammar.INSTANCE); public static final IFileElementType FILE = new IFileElementType(RelAstGrammar.INSTANCE);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment