Skip to content

Commit

Permalink
Add keyword tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
kubukoz committed Oct 2, 2023
1 parent a6782e0 commit c69a352
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,13 @@ sealed trait TokenKind extends Product with Serializable {
}

object TokenKind {
// case object KW_IMPORT extends TokenKind
case object KW_USE extends TokenKind
case object KW_SERVICE extends TokenKind
case object KW_BOOLEAN extends TokenKind
case object KW_NUMBER extends TokenKind
case object KW_STRING extends TokenKind
case object KW_NULL extends TokenKind

case object DOT extends TokenKind
case object COMMA extends TokenKind
case object HASH extends TokenKind
Expand Down

0 comments on commit c69a352

Please sign in to comment.