Skip to content

Commit aa7c8cc

Browse files
authored
src: fix check fd
PR-URL: #56000 Fixes: #55983 Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Jason Zhang <[email protected]> Reviewed-By: Juan José Arboleda <[email protected]>
1 parent d09458f commit aa7c8cc

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

src/util.cc

+10
Original file line numberDiff line numberDiff line change
@@ -782,6 +782,16 @@ std::string DetermineSpecificErrorType(Environment* env,
782782
input.As<v8::Object>()->GetConstructorName();
783783
Utf8Value name(env->isolate(), constructor_name);
784784
return SPrintF("an instance of %s", name.out());
785+
} else if (input->IsSymbol()) {
786+
v8::MaybeLocal<v8::String> str =
787+
input.As<v8::Symbol>()->ToDetailString(env->context());
788+
v8::Local<v8::String> js_str;
789+
if (!str.ToLocal(&js_str)) {
790+
return "Symbol";
791+
}
792+
Utf8Value name(env->isolate(), js_str);
793+
// Symbol(xxx)
794+
return name.out();
785795
}
786796

787797
Utf8Value utf8_value(env->isolate(),

test/parallel/test-fs-stat.js

+9
Original file line numberDiff line numberDiff line change
@@ -212,3 +212,12 @@ fs.lstat(__filename, undefined, common.mustCall());
212212
assert.strictEqual(s.birthtime, 5);
213213
}));
214214
}
215+
216+
{
217+
assert.throws(
218+
() => fs.fstat(Symbol('test'), () => {}),
219+
{
220+
code: 'ERR_INVALID_ARG_TYPE',
221+
},
222+
);
223+
}

0 commit comments

Comments
 (0)