package ast import ( "testing" ) func TestRestrictAttr(t *testing.T) { nodes := map[string]Node{ `0x7f980b858305 foo`: &RestrictAttr{ Addr: 0x7f980b858305, Pos: NewPositionFromString("line:11:7, line:18:7"), Name: "foo", ChildNodes: []Node{}, }, } runNodeTests(t, nodes) }