File tree Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -153,14 +153,11 @@ static void GetCallerLocation(const FunctionCallbackInfo<Value>& args) {
153
153
}
154
154
155
155
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 ()};
161
159
162
- args.GetReturnValue ().Set (
163
- Array::New (args.GetIsolate (), ret, arraysize (ret)));
160
+ args.GetReturnValue ().Set (Array::New (args.GetIsolate (), ret, arraysize (ret)));
164
161
}
165
162
166
163
static void IsArrayBufferDetached (const FunctionCallbackInfo<Value>& args) {
You can’t perform that action at this time.
0 commit comments