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 }