7 lines
116 B
Go
7 lines
116 B
Go
|
package compiler
|
||
|
|
||
|
type CompilationScope struct {
|
||
|
instructions []byte
|
||
|
lastInstructions [2]EmittedInstruction
|
||
|
}
|