summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/d5/tengo/compiler/emitted_instruction.go
blob: 8572fb0aac8060e69b7a254be5a8d0e038a7da25 (plain) (blame)
1
2
3
4
5
6
7
8
package compiler

// EmittedInstruction represents an opcode
// with its emitted position.
type EmittedInstruction struct {
	Opcode   Opcode
	Position int
}