feat(furc): add access specifiers to functions
Introduce public and private access specifiers to functions. Closes: #26
This commit is contained in:
@@ -102,6 +102,8 @@ token_r lexer::next_token() {
|
||||
{ "while", keyword_token::While },
|
||||
{ "import", keyword_token::Import },
|
||||
{ "native", keyword_token::Native },
|
||||
{ "public", keyword_token::Public },
|
||||
{ "private", keyword_token::Private },
|
||||
{ "int32", keyword_token::Int32 },
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user