Skip to content

Commit 820166d

Browse files
targosnodejs-github-bot
authored andcommitted
src: use non-deprecated version of CreateSyntheticModule
Refs: v8/v8@8ff02b7
1 parent cb70014 commit 820166d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/module_wrap.cc

+3-1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ using v8::IntegrityLevel;
3535
using v8::Isolate;
3636
using v8::Local;
3737
using v8::MaybeLocal;
38+
using v8::MemorySpan;
3839
using v8::MicrotaskQueue;
3940
using v8::Module;
4041
using v8::ModuleRequest;
@@ -168,7 +169,8 @@ void ModuleWrap::New(const FunctionCallbackInfo<Value>& args) {
168169
export_names[i] = export_name_val.As<String>();
169170
}
170171

171-
module = Module::CreateSyntheticModule(isolate, url, export_names,
172+
const MemorySpan<const Local<String>> span(export_names.begin(), export_names.size());
173+
module = Module::CreateSyntheticModule(isolate, url, span,
172174
SyntheticModuleEvaluationStepsCallback);
173175
} else {
174176
ScriptCompiler::CachedData* cached_data = nullptr;

0 commit comments

Comments
 (0)