nswrap/ast/indirect_field_decl_test.go

26 lines
532 B
Go

package ast
import (
"testing"
)
func TestIndirectFieldDecl(t *testing.T) {
nodes := map[string]testNode{
`0x2be19a8 <line:167:25> col:25 implicit fpstate 'struct _fpstate *'`: testNode{&IndirectFieldDecl{
Addr: 0x2be19a8,
Pos: NewPositionFromString("line:167:25"),
Position2: "col:25",
Implicit: true,
Name: "fpstate",
Type: "struct _fpstate *",
ChildNodes: []Node{},
},
0x2be19a8,
NewPositionFromString("line:167:25"),
[]Node{},
},
}
runNodeTests(t, nodes)
}