22 lines
467 B
Go
22 lines
467 B
Go
package ast
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestAlwaysInlineAttr(t *testing.T) {
|
|
nodes := map[string]testNode{
|
|
`0x7fce780f5018 </usr/include/sys/cdefs.h:313:68> always_inline`: testNode{&AlwaysInlineAttr{
|
|
Addr: 0x7fce780f5018,
|
|
Pos: NewPositionFromString("/usr/include/sys/cdefs.h:313:68"),
|
|
ChildNodes: []Node{},
|
|
},
|
|
0x7fce780f5018,
|
|
NewPositionFromString("/usr/include/sys/cdefs.h:313:68"),
|
|
[]Node{},
|
|
},
|
|
}
|
|
|
|
runNodeTests(t, nodes)
|
|
}
|