18 lines
312 B
Go
18 lines
312 B
Go
|
package ast
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestDefaultStmt(t *testing.T) {
|
||
|
nodes := map[string]Node{
|
||
|
`0x7f951308bfb0 <line:17:5, line:18:34>`: &DefaultStmt{
|
||
|
Addr: 0x7f951308bfb0,
|
||
|
Pos: NewPositionFromString("line:17:5, line:18:34"),
|
||
|
ChildNodes: []Node{},
|
||
|
},
|
||
|
}
|
||
|
|
||
|
runNodeTests(t, nodes)
|
||
|
}
|