first working implementation of iterators and some fixes to the parser around lists analysis

This commit is contained in:
2024-04-26 04:45:42 +02:00
parent 7a88449cd1
commit 750c660331
5 changed files with 318 additions and 13 deletions
+3
View File
@@ -62,6 +62,8 @@ const (
SymInsert // 51: '>>'
SymAppend // 52: '<<'
SymCaret // 53: '^'
SymDollarRound // 54: '$('
SymOpenClosedRound // 55: '()'
SymChangeSign
SymUnchangeSign
SymIdentifier
@@ -69,6 +71,7 @@ const (
SymInteger
SymFloat
SymString
SymIterator
SymOr
SymAnd
SymNot