Skip to content

Commit afa290d

Browse files
committed
lint
1 parent 6c679cc commit afa290d

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

src/node_util.cc

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -153,14 +153,11 @@ static void GetCallerLocation(const FunctionCallbackInfo<Value>& args) {
153153
}
154154

155155
Local<StackFrame> frame = trace->GetFrame(isolate, 1);
156-
Local<Value> ret[] = {
157-
Integer::New(isolate, frame->GetLineNumber()),
158-
Integer::New(isolate, frame->GetColumn()),
159-
frame->GetScriptNameOrSourceURL()
160-
};
156+
Local<Value> ret[] = {Integer::New(isolate, frame->GetLineNumber()),
157+
Integer::New(isolate, frame->GetColumn()),
158+
frame->GetScriptNameOrSourceURL()};
161159

162-
args.GetReturnValue().Set(
163-
Array::New(args.GetIsolate(), ret, arraysize(ret)));
160+
args.GetReturnValue().Set(Array::New(args.GetIsolate(), ret, arraysize(ret)));
164161
}
165162

166163
static void IsArrayBufferDetached(const FunctionCallbackInfo<Value>& args) {

0 commit comments

Comments
 (0)