Skip to content

Commit b5cedcc

Browse files
committed
basic: add some more freebasic keywords
1 parent c888316 commit b5cedcc

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

parsers/basic.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,9 @@ static KeyWord basic_keywords[] = {
6161
{"public sub", K_FUNCTION, 0},
6262
{"private function", K_FUNCTION, 0},
6363
{"public function", K_FUNCTION, 0},
64+
{"property", K_FUNCTION, 0},
65+
{"constructor", K_FUNCTION, 0},
66+
{"destructor", K_FUNCTION, 0},
6467
{"type", K_TYPE, 0},
6568
{"enum", K_ENUM, 0},
6669

0 commit comments

Comments
 (0)