18 lines
300 B
Go
18 lines
300 B
Go
package ast
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestIfStmt(t *testing.T) {
|
|
nodes := map[string]Node{
|
|
`0x7fc0a69091d0 <line:11:7, line:18:7>`: &IfStmt{
|
|
Addr: 0x7fc0a69091d0,
|
|
Pos: NewPositionFromString("line:11:7, line:18:7"),
|
|
ChildNodes: []Node{},
|
|
},
|
|
}
|
|
|
|
runNodeTests(t, nodes)
|
|
}
|