Update TokenType.kt

Add impork, and porkload
This commit is contained in:
Violet White 2023-09-14 20:55:42 -07:00 committed by GitHub
parent 63e7203db9
commit 578c6ef28c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -56,6 +56,8 @@ enum class TokenType(vararg properties: TokenTypeProperty) {
Continue(ManyChars("continue"), KeywordFamily),
Break(ManyChars("break"), KeywordFamily),
Import(ManyChars("import"), KeywordFamily),
Impork(ManyChars("impork"), KeywordFamily),
PorkLoad(ManyChar("porkload"), KeywordFamily),
Export(ManyChars("export"), KeywordFamily),
Func(ManyChars("func"), KeywordFamily),
Native(ManyChars("native"), KeywordFamily),