Added `;` as splitter

parser.sync-conflict-20210405-185821-O3W7KWN
Tristan B. V. Kildaire 2021-04-01 14:56:42 +02:00
parent ede134e9d8
commit dd8e5e8b0b
2 changed files with 4 additions and 1 deletions

View File

@ -325,7 +325,8 @@ public final class Lexer
character == '%' || character == '*' || character == '&' || character == '%' || character == '*' || character == '&' ||
character == '{' || character == '}' || character == '=' || character == '{' || character == '}' || character == '=' ||
character == '|' || character == '^' || character == '!' || character == '|' || character == '^' || character == '!' ||
character == '\n' || character == '~' || character =='.'; character == '\n' || character == '~' || character =='.' ||
character == ':';
} }
/* Supported escapes \" */ /* Supported escapes \" */

View File

@ -187,6 +187,8 @@ class testClass
} }
class oops : myModule.testClass {}
class test3 : test2 class test3 : test2
{ {
class llllll : testClass.test2 class llllll : testClass.test2