Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
src: fix crash with SyntheticModule#setExport
Use the new non-deprecated V8 API for that.
  • Loading branch information
targos committed Oct 25, 2019
commit 48c74ef36b67a0a6733dc9a84c56865da37d92d1
2 changes: 1 addition & 1 deletion src/module_wrap.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1500,7 +1500,7 @@ void ModuleWrap::SetSyntheticExport(
Local<Value> export_value = args[1];

Local<Module> module = obj->module_.Get(isolate);
module->SetSyntheticModuleExport(export_name, export_value);
USE(module->SetSyntheticModuleExport(isolate, export_name, export_value));
}

void ModuleWrap::Initialize(Local<Object> target,
Expand Down
3 changes: 0 additions & 3 deletions test/parallel/test-vm-module-synthetic.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ const assert = require('assert');
});
}

// https://bugs.chromium.org/p/v8/issues/detail?id=9828
/*
{
const s = new SyntheticModule([], () => {});
await s.link(() => {});
Expand All @@ -47,7 +45,6 @@ const assert = require('assert');
name: 'ReferenceError',
});
}
*/

{
const s = new SyntheticModule([], () => {});
Expand Down