mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 14:30:26 +00:00
9 lines
162 B
Go
9 lines
162 B
Go
|
package compiler
|
||
|
|
||
|
// Loop represents a loop construct that
|
||
|
// the compiler uses to track the current loop.
|
||
|
type Loop struct {
|
||
|
Continues []int
|
||
|
Breaks []int
|
||
|
}
|