nswrap/ast/compound_stmt_test.go

31 lines
680 B
Go
Raw Normal View History

2019-04-09 11:52:21 -04:00
package ast
import (
"testing"
)
func TestCompoundStmt(t *testing.T) {
2019-06-04 00:14:04 -04:00
nodes := map[string]testNode{
`0x7fbd0f014f18 <col:54, line:358:1>`: testNode{&CompoundStmt{
2019-04-09 11:52:21 -04:00
Addr: 0x7fbd0f014f18,
Pos: NewPositionFromString("col:54, line:358:1"),
ChildNodes: []Node{},
},
0x7fbd0f014f18,
NewPositionFromString("col:54, line:358:1"),
[]Node{},
2019-06-04 00:14:04 -04:00
},
`0x7fbd0f8360b8 <line:4:1, line:13:1>`: testNode{&CompoundStmt{
2019-04-09 11:52:21 -04:00
Addr: 0x7fbd0f8360b8,
Pos: NewPositionFromString("line:4:1, line:13:1"),
ChildNodes: []Node{},
},
0x7fbd0f8360b8,
NewPositionFromString("line:4:1, line:13:1"),
[]Node{},
2019-06-04 00:14:04 -04:00
},
2019-04-09 11:52:21 -04:00
}
runNodeTests(t, nodes)
}