(self, filename)
| 440 | self._Action(command['action']))) |
| 441 | |
| 442 | def _Module(self, filename): |
| 443 | with open(os.path.join(self.base_dir, filename), 'rb') as wasm_file: |
| 444 | return ''.join('\\x%02x' % c for c in bytearray(wasm_file.read())) |
| 445 | |
| 446 | def _Constant(self, const): |
| 447 | assert IsValidJSConstant(const), 'Invalid JS const: %s' % const |
no test coverage detected