19 lines
368 B
Go
19 lines
368 B
Go
package ast
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestLabelStmt(t *testing.T) {
|
|
nodes := map[string]Node{
|
|
`0x7fe3ba82edb8 <line:18906:1, line:18907:22> 'end_getDigits'`: &LabelStmt{
|
|
Addr: 0x7fe3ba82edb8,
|
|
Pos: NewPositionFromString("line:18906:1, line:18907:22"),
|
|
Name: "end_getDigits",
|
|
ChildNodes: []Node{},
|
|
},
|
|
}
|
|
|
|
runNodeTests(t, nodes)
|
|
}
|