Skip to content
Snippets Groups Projects

Resolve "Grammar Bugs (VariableArityParameter and multiple catch types)"

Merged Johannes Mey requested to merge bug/lexer-and-grammar-bugs into develop
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -18,7 +18,7 @@ import com.intellij.psi.TokenType;
@@ -18,7 +18,7 @@ import com.intellij.psi.TokenType;
WhiteSpace = [ ] | \t | \f | \n | \r | \r\n
WhiteSpace = [ ] | \t | \f | \n | \r | \r\n
ID = [a-zA-Z$_][a-zA-Z0-9$_]*
ID = [:jletter:] [:jletterdigit:]*
MultiLineComment = [/][*][^*]+[*]+([^*/][^*]*[*]+)*[/]
MultiLineComment = [/][*][^*]+[*]+([^*/][^*]*[*]+)*[/]
DocComment = [/][*][*][^*]*[*]+([^*/][^*]*[*]+)*[/]
DocComment = [/][*][*][^*]*[*]+([^*/][^*]*[*]+)*[/]
SingleLineComment = [/][/] [^\n\r]* (\n | \r | \r\n)
SingleLineComment = [/][/] [^\n\r]* (\n | \r | \r\n)
Loading