43 lines
1.2 KiB
Go
43 lines
1.2 KiB
Go
|
package ast
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestImplicitCastExpr(t *testing.T) {
|
||
|
nodes := map[string]Node{
|
||
|
`0x7f9f5b0a1288 <col:8> 'FILE *' <LValueToRValue>`: &ImplicitCastExpr{
|
||
|
Addr: 0x7f9f5b0a1288,
|
||
|
Pos: NewPositionFromString("col:8"),
|
||
|
Type: "FILE *",
|
||
|
Kind: "LValueToRValue",
|
||
|
ChildNodes: []Node{},
|
||
|
},
|
||
|
`0x7f9f5b0a7828 <col:11> 'int (*)(int, FILE *)' <FunctionToPointerDecay>`: &ImplicitCastExpr{
|
||
|
Addr: 0x7f9f5b0a7828,
|
||
|
Pos: NewPositionFromString("col:11"),
|
||
|
Type: "int (*)(int, FILE *)",
|
||
|
Kind: "FunctionToPointerDecay",
|
||
|
ChildNodes: []Node{},
|
||
|
},
|
||
|
`0x21267c8 <col:8> 'enum week1':'enum week2' <IntegralCast>`: &ImplicitCastExpr{
|
||
|
Addr: 0x21267c8,
|
||
|
Pos: NewPositionFromString("col:8"),
|
||
|
Type: "enum week1",
|
||
|
Type2: "enum week2",
|
||
|
Kind: "IntegralCast",
|
||
|
ChildNodes: []Node{},
|
||
|
},
|
||
|
`0x26fd2d8 <col:20, col:32> 'extCoord':'extCoord' <LValueToRValue>`: &ImplicitCastExpr{
|
||
|
Addr: 0x26fd2d8,
|
||
|
Pos: NewPositionFromString("col:20, col:32"),
|
||
|
Type: "extCoord",
|
||
|
Type2: "extCoord",
|
||
|
Kind: "LValueToRValue",
|
||
|
ChildNodes: []Node{},
|
||
|
},
|
||
|
}
|
||
|
|
||
|
runNodeTests(t, nodes)
|
||
|
}
|