Locations returns a slice of bytecode's locations.
()
| 69 | |
| 70 | // Locations returns a slice of bytecode's locations. |
| 71 | func (program *Program) Locations() []file.Location { |
| 72 | return program.locations |
| 73 | } |
| 74 | |
| 75 | // Disassemble returns opcodes as a string. |
| 76 | func (program *Program) Disassemble() string { |
nothing calls this directly
no outgoing calls
no test coverage detected