xgo/compiler/emitted_instruction.go

9 lines
157 B
Go
Raw Normal View History

2019-01-09 10:17:42 +03:00
package compiler
// EmittedInstruction represents an opcode
// with its emitted position.
2019-01-09 10:17:42 +03:00
type EmittedInstruction struct {
Opcode Opcode
Position int
}