Basic array table implementation
This commit is contained in:
@@ -73,6 +73,8 @@ func (p *parser) parseExpression(b []byte) ([]byte, error) {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
p.tree = append(p.tree, node)
|
||||
|
||||
b = p.parseWhitespace(b)
|
||||
|
||||
if len(b) > 0 && b[0] == '#' {
|
||||
@@ -80,8 +82,6 @@ func (p *parser) parseExpression(b []byte) ([]byte, error) {
|
||||
return rest, err
|
||||
}
|
||||
|
||||
p.tree = append(p.tree, node)
|
||||
|
||||
return b, nil
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user