We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21d052a commit 46062f1Copy full SHA for 46062f1
src/node_util.cc
@@ -257,7 +257,7 @@ static void GetCallSites(const FunctionCallbackInfo<Value>& args) {
257
CHECK_EQ(args.Length(), 1);
258
CHECK(args[0]->IsNumber());
259
const uint32_t frames = args[0].As<Uint32>()->Value();
260
- DCHECK(frames >= 1 && frames <= 200);
+ CHECK(frames >= 1 && frames <= 200);
261
262
// +1 for disregarding node:util
263
Local<StackTrace> stack = StackTrace::CurrentStackTrace(isolate, frames + 1);
0 commit comments