registerModuleBytecode method
Register module bytecode in the current context without running it, so
that import of its name resolves from the context instead of calling the
module loader. With resolve, the module's own imports are linked now
(every dependency must already be registered).
Registration belongs to one context: after softReset / reinitialize the modules are gone and have to be registered again.
Implementation
void registerModuleBytecode(Uint8List bytecode, {bool resolve = false}) {
throw UnimplementedError();
}