From 578c6ef28c5f059d58cd3b54ea371715bdc40263 Mon Sep 17 00:00:00 2001 From: Violet White Date: Thu, 14 Sep 2023 20:55:42 -0700 Subject: [PATCH] Update TokenType.kt Add impork, and porkload --- parser/src/main/kotlin/gay/pizza/pork/parser/TokenType.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/parser/src/main/kotlin/gay/pizza/pork/parser/TokenType.kt b/parser/src/main/kotlin/gay/pizza/pork/parser/TokenType.kt index ba26b33..ec06d1d 100644 --- a/parser/src/main/kotlin/gay/pizza/pork/parser/TokenType.kt +++ b/parser/src/main/kotlin/gay/pizza/pork/parser/TokenType.kt @@ -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),