Returns the full instruction codepoint at the given line.
(int line)
| 146 | * Returns the full instruction codepoint at the given line. |
| 147 | */ |
| 148 | public int codepoint(int line) { |
| 149 | return code[line - 1]; |
| 150 | } |
| 151 | |
| 152 | public boolean isUpvalueDeclaration(int line) { |
| 153 | return upvalue[line - 1]; |
no outgoing calls
no test coverage detected