update stmt visitor test

This commit is contained in:
z7zmey 2018-02-09 14:11:08 +02:00
parent 8b6f570de0
commit c0e0512194

View File

@ -435,6 +435,13 @@ var nodesToTest = []struct {
[]string{"Cond", "Stmt"},
map[string]interface{}{},
},
{
&stmt.StmtList{
Stmts: []node.Node{&stmt.Expression{}},
},
[]string{"Stmts"},
map[string]interface{}{},
},
}
type visitorMock struct {