Added AcessorType enum and FunctionType enum

develop_before_lexer_parser_merge_parseName
Tristan B. V. Kildaire 2021-03-21 13:01:09 +02:00
parent f1b7a39751
commit 85ab9bde02
1 changed files with 10 additions and 0 deletions

View File

@ -13,6 +13,16 @@ import misc.exceptions : TError;
// }
public enum AccessorType
{
PUBLIC, PRIVATE, PROTECTED
}
public enum FunctionType
{
STATIC, VIRTUAL
}
public final class Parser
{
/**