diff --git a/src/node_builtins.cc b/src/node_builtins.cc index e9bf8a5a0e0b7e..23e1be6536dfc8 100644 --- a/src/node_builtins.cc +++ b/src/node_builtins.cc @@ -256,9 +256,6 @@ bool BuiltinLoader::Add(const char* id, std::string_view utf8source) { return Add(id, UnionBytes(out)); } -// Returns Local of the compiled module if return_code_cache -// is false (we are only compiling the function). -// Otherwise return a Local containing the cache. MaybeLocal BuiltinLoader::LookupAndCompileInternal( Local context, const char* id, @@ -356,9 +353,6 @@ MaybeLocal BuiltinLoader::LookupAndCompileInternal( return scope.Escape(fun); } -// Returns Local of the compiled module if return_code_cache -// is false (we are only compiling the function). -// Otherwise return a Local containing the cache. MaybeLocal BuiltinLoader::LookupAndCompile(Local context, const char* id, Realm* optional_realm) {