aboutsummaryrefslogtreecommitdiff
path: root/src/tokenizer.h
diff options
context:
space:
mode:
authorDylan <boss@tehbox.org>2026-06-11 22:11:09 +1200
committerDylan <boss@tehbox.org>2026-06-11 22:11:09 +1200
commit49a8dae0f3a6e589dfad65cbbf230137a7b67f4a (patch)
tree12eb15246e6e53911a91fde2d715c5d3a78dc614 /src/tokenizer.h
parent79a977bc3bea7777de861e4c1adda6d9f9feec99 (diff)
downloadtehjson-49a8dae0f3a6e589dfad65cbbf230137a7b67f4a.tar.gz
tehjson-49a8dae0f3a6e589dfad65cbbf230137a7b67f4a.zip
feat: Started to add arrays
Only supports arrays of ints so far
Diffstat (limited to 'src/tokenizer.h')
-rw-r--r--src/tokenizer.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/tokenizer.h b/src/tokenizer.h
index 3322553..d0362a3 100644
--- a/src/tokenizer.h
+++ b/src/tokenizer.h
@@ -9,11 +9,14 @@ namespace TehJSON
{
LBrace,
RBrace,
+ LSquare,
+ RSquare,
Colon,
Comma,
StringLit,
IntLit,
FloatLit,
+ BoolLit,
};
std::string getTokenName(TokenType t);