b79fd4f7ef
* addressing golint issues * fix all lint issues.
8 lines
223 B
Go
8 lines
223 B
Go
package compiler
|
|
|
|
// CompilationScope represents a compiled instructions
|
|
// and the last two instructions that were emitted.
|
|
type CompilationScope struct {
|
|
instructions []byte
|
|
lastInstructions [2]EmittedInstruction
|
|
}
|