summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/d5/tengo/compiler/loop.go
blob: e27cb096f894417df5bdcf8d3aacb0ea1f095be4 (plain) (blame)
1
2
3
4
5
6
7
8
package compiler

// Loop represents a loop construct that
// the compiler uses to track the current loop.
type Loop struct {
	Continues []int
	Breaks    []int
}