We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d856191 commit 9b456fdCopy full SHA for 9b456fd
src/agent.ts
@@ -3,7 +3,7 @@ rpc.exports = {
3
const bootstrapperModule = Module.load(bootstrapper);
4
5
const functionPointer = bootstrapperModule.getExportByName("bootstrapper_load_assembly");
6
- const bootstrapper_load_assembly = new NativeFunction(functionPointer, "uint32", ["pointer", "pointer", "pointer", "pointer"]);
+ const bootstrapper_load_assembly = new NativeFunction(functionPointer, "uint32", ["pointer", "pointer", "pointer", "pointer"], { exceptions: "propagate" });
7
8
const allocUtfString = Process.platform === "windows" ? Memory.allocUtf16String : Memory.allocUtf8String;
9
return bootstrapper_load_assembly(
0 commit comments