nswrap/ast/if_stmt_test.go

33 lines
723 B
Go
Raw Normal View History

2019-04-09 11:52:21 -04:00
package ast
import (
"testing"
)
func TestIfStmt(t *testing.T) {
2019-06-04 00:14:04 -04:00
nodes := map[string]testNode{
`0x7fc0a69091d0 <line:11:7, line:18:7>`: testNode{&IfStmt{
2019-04-09 11:52:21 -04:00
Addr: 0x7fc0a69091d0,
2021-06-11 11:24:25 -04:00
HasElse: false,
Pos: NewPositionFromString("line:11:7, line:18:7"),
ChildNodes: []Node{},
},
0x7fc0a69091d0,
NewPositionFromString("line:11:7, line:18:7"),
[]Node{},
},
`0x7fc0a69091d0 <line:11:7, line:18:7> has_else`: testNode{&IfStmt{
Addr: 0x7fc0a69091d0,
HasElse: true,
2019-04-09 11:52:21 -04:00
Pos: NewPositionFromString("line:11:7, line:18:7"),
ChildNodes: []Node{},
},
0x7fc0a69091d0,
NewPositionFromString("line:11:7, line:18:7"),
[]Node{},
2019-06-04 00:14:04 -04:00
},
2019-04-09 11:52:21 -04:00
}
runNodeTests(t, nodes)
}