xgo/parser/sync.go

14 lines
253 B
Go
Raw Normal View History

2019-01-09 10:17:42 +03:00
package parser
import "github.com/d5/tengo/token"
var stmtStart = map[token.Token]bool{
token.Break: true,
token.Continue: true,
token.For: true,
token.If: true,
token.Return: true,
token.Switch: true,
token.Var: true,
}