b79fd4f7ef
* addressing golint issues * fix all lint issues.
8 lines
162 B
Go
8 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
|
|
}
|