120 lines
3.5 KiB
Go
120 lines
3.5 KiB
Go
|
package ast
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestParmVarDecl(t *testing.T) {
|
||
|
nodes := map[string]Node{
|
||
|
`0x7f973380f000 <col:14> col:17 'int'`: &ParmVarDecl{
|
||
|
Addr: 0x7f973380f000,
|
||
|
Pos: NewPositionFromString("col:14"),
|
||
|
Position2: "col:17",
|
||
|
Type: "int",
|
||
|
Name: "",
|
||
|
Type2: "",
|
||
|
IsUsed: false,
|
||
|
IsReferenced: false,
|
||
|
IsRegister: false,
|
||
|
ChildNodes: []Node{},
|
||
|
},
|
||
|
`0x7f973380f070 <col:19, col:30> col:31 'const char *'`: &ParmVarDecl{
|
||
|
Addr: 0x7f973380f070,
|
||
|
Pos: NewPositionFromString("col:19, col:30"),
|
||
|
Position2: "col:31",
|
||
|
Type: "const char *",
|
||
|
Name: "",
|
||
|
Type2: "",
|
||
|
IsUsed: false,
|
||
|
IsReferenced: false,
|
||
|
ChildNodes: []Node{},
|
||
|
},
|
||
|
`0x7f9733816e50 <col:13, col:37> col:37 __filename 'const char *__restrict'`: &ParmVarDecl{
|
||
|
Addr: 0x7f9733816e50,
|
||
|
Pos: NewPositionFromString("col:13, col:37"),
|
||
|
Position2: "col:37",
|
||
|
Type: "const char *__restrict",
|
||
|
Name: "__filename",
|
||
|
Type2: "",
|
||
|
IsUsed: false,
|
||
|
IsReferenced: false,
|
||
|
IsRegister: false,
|
||
|
ChildNodes: []Node{},
|
||
|
},
|
||
|
`0x7f9733817418 <<invalid sloc>> <invalid sloc> 'FILE *'`: &ParmVarDecl{
|
||
|
Addr: 0x7f9733817418,
|
||
|
Pos: NewPositionFromString("<invalid sloc>"),
|
||
|
Position2: "<invalid sloc>",
|
||
|
Type: "FILE *",
|
||
|
Name: "",
|
||
|
Type2: "",
|
||
|
IsUsed: false,
|
||
|
IsReferenced: false,
|
||
|
IsRegister: false,
|
||
|
ChildNodes: []Node{},
|
||
|
},
|
||
|
`0x7f9733817c30 <col:40, col:47> col:47 __size 'size_t':'unsigned long'`: &ParmVarDecl{
|
||
|
Addr: 0x7f9733817c30,
|
||
|
Pos: NewPositionFromString("col:40, col:47"),
|
||
|
Position2: "col:47",
|
||
|
Type: "size_t",
|
||
|
Name: "__size",
|
||
|
Type2: "unsigned long",
|
||
|
IsUsed: false,
|
||
|
IsReferenced: false,
|
||
|
IsRegister: false,
|
||
|
ChildNodes: []Node{},
|
||
|
},
|
||
|
`0x7f973382fa10 <line:476:18, col:25> col:34 'int (* _Nullable)(void *, char *, int)':'int (*)(void *, char *, int)'`: &ParmVarDecl{
|
||
|
Addr: 0x7f973382fa10,
|
||
|
Pos: NewPositionFromString("line:476:18, col:25"),
|
||
|
Position2: "col:34",
|
||
|
Type: "int (* _Nullable)(void *, char *, int)",
|
||
|
Name: "",
|
||
|
Type2: "int (*)(void *, char *, int)",
|
||
|
IsUsed: false,
|
||
|
IsReferenced: false,
|
||
|
IsRegister: false,
|
||
|
ChildNodes: []Node{},
|
||
|
},
|
||
|
`0x7f97338355b8 <col:10, col:14> col:14 used argc 'int'`: &ParmVarDecl{
|
||
|
Addr: 0x7f97338355b8,
|
||
|
Pos: NewPositionFromString("col:10, col:14"),
|
||
|
Position2: "col:14",
|
||
|
Type: "int",
|
||
|
Name: "argc",
|
||
|
Type2: "",
|
||
|
IsUsed: true,
|
||
|
IsReferenced: false,
|
||
|
IsRegister: false,
|
||
|
ChildNodes: []Node{},
|
||
|
},
|
||
|
`0x1d82850 <col:11, col:22> col:16 referenced foo 'char *':'char *'`: &ParmVarDecl{
|
||
|
Addr: 0x1d82850,
|
||
|
Pos: NewPositionFromString("col:11, col:22"),
|
||
|
Position2: "col:16",
|
||
|
Type: "char *",
|
||
|
Name: "foo",
|
||
|
Type2: "char *",
|
||
|
IsUsed: false,
|
||
|
IsReferenced: true,
|
||
|
IsRegister: false,
|
||
|
ChildNodes: []Node{},
|
||
|
},
|
||
|
`0x7f95f30ed9d0 <col:23, col:51> col:51 used eptr 'const char *' register`: &ParmVarDecl{
|
||
|
Addr: 0x7f95f30ed9d0,
|
||
|
Pos: NewPositionFromString("col:23, col:51"),
|
||
|
Position2: "col:51",
|
||
|
Type: "const char *",
|
||
|
Name: "eptr",
|
||
|
Type2: "",
|
||
|
IsUsed: true,
|
||
|
IsReferenced: false,
|
||
|
IsRegister: true,
|
||
|
ChildNodes: []Node{},
|
||
|
},
|
||
|
}
|
||
|
|
||
|
runNodeTests(t, nodes)
|
||
|
}
|