forked from jshiffer/matterbridge
9 lines
157 B
Go
9 lines
157 B
Go
|
package compiler
|
||
|
|
||
|
// EmittedInstruction represents an opcode
|
||
|
// with its emitted position.
|
||
|
type EmittedInstruction struct {
|
||
|
Opcode Opcode
|
||
|
Position int
|
||
|
}
|