nswrap/ast/array_filler_test.go

14 lines
219 B
Go
Raw Normal View History

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`),
testNode{ &ArrayFiller{ ChildNodes: []Node{} },
0,NewPositionFromString(""),[]Node{}},
&i)
2019-04-09 11:52:21 -04:00
}