2019-04-09 11:52:21 -04:00
|
|
|
package ast
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestArrayFiller(t *testing.T) {
|
2019-06-04 00:14:04 -04:00
|
|
|
i := 0
|
|
|
|
runNodeTest(t, Parse(`array filler`),
|
2019-06-11 12:38:22 -04:00
|
|
|
testNode{&ArrayFiller{ChildNodes: []Node{}},
|
|
|
|
0, NewPositionFromString(""), []Node{}},
|
2019-06-04 00:14:04 -04:00
|
|
|
&i)
|
2019-04-09 11:52:21 -04:00
|
|
|
}
|