Remove TOKEN_DROP

This commit is contained in:
Josh Holtrop 2023-03-17 19:58:54 -04:00
parent ffccc659aa
commit 01b45df1f9
2 changed files with 0 additions and 4 deletions

View File

@ -23,7 +23,6 @@ class <%= @classname %>
<% end %>
_TOKEN_COUNT = <%= @grammar.tokens.size %>,
_TOKEN_DECODE_ERROR = <%= TOKEN_DECODE_ERROR %>,
_TOKEN_DROP = <%= TOKEN_DROP %>,
}
struct Token

View File

@ -28,9 +28,6 @@ class Propane
# Decoding error.
TOKEN_DECODE_ERROR = 0xFFFFFFFD
# Token ID for a "dropped" token.
TOKEN_DROP = 0xFFFFFFFE
class Error < RuntimeError
end