mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 12:10:26 +00:00
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
|
||
|
}
|