first plugin support.

Module organization requires a better structure to decouple definitions and implementations
This commit is contained in:
2024-06-09 07:41:56 +02:00
parent 8eb2d77ea3
commit 29bc2c62a3
3 changed files with 134 additions and 0 deletions
+2
View File
@@ -101,6 +101,7 @@ const (
SymKwBut
SymKwFunc
SymKwBuiltin
SymKwPlugin
SymKwIn
SymKwInclude
SymKwNil
@@ -113,6 +114,7 @@ func init() {
keywords = map[string]Symbol{
"AND": SymKwAnd,
"BUILTIN": SymKwBuiltin,
"PLUGIN": SymKwPlugin,
"BUT": SymKwBut,
"FUNC": SymKwFunc,
"IN": SymKwIn,