package ast import ( "testing" ) func TestNoThrowAttr(t *testing.T) { nodes := map[string]testNode{ `0x7fa1488273a0 `: testNode{&NoThrowAttr{ Addr: 0x7fa1488273a0, Pos: NewPositionFromString("line:7:4, line:11:4"), ChildNodes: []Node{}, Inherited: false, Implicit: false, }, 0x7fa1488273a0, NewPositionFromString("line:7:4, line:11:4"), []Node{}, }, `0x5605ceaf4b88 Implicit`: testNode{&NoThrowAttr{ Addr: 0x5605ceaf4b88, Pos: NewPositionFromString("col:12"), ChildNodes: []Node{}, Inherited: false, Implicit: true, }, 0x5605ceaf4b88, NewPositionFromString("col:12"), []Node{}, }, `0x4153c50 Inherited`: testNode{&NoThrowAttr{ Addr: 0x4153c50, Pos: NewPositionFromString("/usr/include/unistd.h:779:46"), ChildNodes: []Node{}, Inherited: true, Implicit: false, }, 0x4153c50, NewPositionFromString("/usr/include/unistd.h:779:46"), []Node{}, }, `0x1038b8828 Inherited Implicit`: testNode{&NoThrowAttr{ Addr: 0x1038b8828, Pos: NewPositionFromString("col:20"), ChildNodes: []Node{}, Inherited: true, Implicit: true, }, 0x1038b8828, NewPositionFromString("col:20"), []Node{}, }, } runNodeTests(t, nodes) }