Implemented list parsing

This commit is contained in:
2022-09-27 18:03:27 -04:00
parent 37a216a53d
commit 8dd90e1c6b
3 changed files with 42 additions and 0 deletions

View File

@@ -86,6 +86,9 @@ type Declaration struct {
// List represents an array or object literal.
type List struct {
locatable
// TODO: have an array of unnamed arguments, and a map of named
// arguments
multiValuable
}