package ast import ( "testing" ) func TestCompoundStmt(t *testing.T) { nodes := map[string]testNode{ `0x7fbd0f014f18 `: testNode{&CompoundStmt{ Addr: 0x7fbd0f014f18, Pos: NewPositionFromString("col:54, line:358:1"), ChildNodes: []Node{}, }, 0x7fbd0f014f18, NewPositionFromString("col:54, line:358:1"), []Node{}, }, `0x7fbd0f8360b8 `: testNode{&CompoundStmt{ Addr: 0x7fbd0f8360b8, Pos: NewPositionFromString("line:4:1, line:13:1"), ChildNodes: []Node{}, }, 0x7fbd0f8360b8, NewPositionFromString("line:4:1, line:13:1"), []Node{}, }, } runNodeTests(t, nodes) }