(data)
| 16 | |
| 17 | // Initialize opcode mappings from embedded data |
| 18 | function initOpcodeMapping(data) { |
| 19 | if (data && data.opcode_mapping) { |
| 20 | OPCODE_NAMES = data.opcode_mapping.names || {}; |
| 21 | DEOPT_MAP = data.opcode_mapping.deopt || {}; |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | // Get opcode info from opcode number |
| 26 | function getOpcodeInfo(opcode) { |
no outgoing calls
no test coverage detected
searching dependent graphs…