package ast import ( "testing" ) func TestParenExpr(t *testing.T) { nodes := map[string]testNode{ `0x7fb0bc8b2308 'unsigned char'`: testNode{&ParenExpr{ Addr: 0x7fb0bc8b2308, Pos: NewPositionFromString("col:10, col:25"), Type: "unsigned char", Type2: "", Lvalue: false, IsBitfield: false, ChildNodes: []Node{}, }, 0x7fb0bc8b2308, NewPositionFromString("col:10, col:25"), []Node{}, }, `0x1ff8708 'T_ENUM':'T_ENUM' lvalue`: testNode{&ParenExpr{ Addr: 0x1ff8708, Pos: NewPositionFromString("col:14, col:17"), Type: "T_ENUM", Type2: "T_ENUM", Lvalue: true, IsBitfield: false, ChildNodes: []Node{}, }, 0x1ff8708, NewPositionFromString("col:14, col:17"), []Node{}, }, `0x55efc60798b0 'bft':'unsigned int' lvalue bitfield`: testNode{&ParenExpr{ Addr: 0x55efc60798b0, Pos: NewPositionFromString("col:15, col:27"), Type: "bft", Type2: "unsigned int", Lvalue: true, IsBitfield: true, ChildNodes: []Node{}, }, 0x55efc60798b0, NewPositionFromString("col:15, col:27"), []Node{}, }, } runNodeTests(t, nodes) }