Create tokenizer for float type

This commit is contained in:
Bartłomiej Pluta
2019-07-25 12:51:48 +02:00
parent 3feec0839b
commit 0657214aa3
3 changed files with 28 additions and 0 deletions

View File

@@ -30,6 +30,7 @@ class TokenType(Enum):
NOT = 'not'
INTEGER = 'integer'
STRING = 'string'
FLOAT = 'float'
NOTE = 'note'
BOOL = 'bool'
TYPE = 'type'