Added `;` as splitter

This commit is contained in:
Tristan B. Velloza 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 == '\n' || character == '~' || character =='.';
character == '\n' || character == '~' || character =='.' ||
character == ':';
}
/* Supported escapes \" */

View File

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