Reworked array initialization value parsing

This commit is contained in:
Sasha Koshka
2022-08-17 11:30:17 -04:00
parent 7bb6582e01
commit 8c03aa880b
2 changed files with 117 additions and 70 deletions

View File

@@ -88,10 +88,12 @@ type Phrase struct {
type ArgumentKind int
const (
ArgumentKindNil ArgumentKind = iota
// [name argument]
// [name argument argument]
// etc...
ArgumentKindPhrase ArgumentKind = iota
ArgumentKindPhrase = iota
// {name}
ArgumentKindDereference