From 0063922f5c8a07b78603b2da7f6a3c2094711c3d Mon Sep 17 00:00:00 2001 From: Marc Vertes Date: Tue, 23 Apr 2024 14:36:57 +0200 Subject: feat: initial and partial support of composite expressions (#9) A new `Composite` token is created. Literal composite expressions are recognized and partially handled by the parser but not yet by the code generator. Other cosmetic changes are present. --- lang/token.go | 1 + 1 file changed, 1 insertion(+) (limited to 'lang/token.go') diff --git a/lang/token.go b/lang/token.go index 7ad7bf1..41c8439 100644 --- a/lang/token.go +++ b/lang/token.go @@ -111,6 +111,7 @@ const ( // Internal virtual machine tokens (no corresponding keyword). Call CallX + Composite EqualSet Grow Index -- cgit v1.2.3