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