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 dbf2c5c commit d0f603aCopy full SHA for d0f603a
1 file changed
src/inspector/network_agent.cc
@@ -89,8 +89,7 @@ static std::unique_ptr<protocol::Value> V8ToProtocolValue(
89
// `property_names` is a JSArray returned from GetOwnPropertyNames, so
90
// indexed access always succeeds. User-defined getters can still throw
91
// when reading the property value, which is what we guard against.
92
- Local<Value> key =
93
- property_names->Get(context, i).ToLocalChecked();
+ Local<Value> key = property_names->Get(context, i).ToLocalChecked();
94
Local<Value> property;
95
if (!GetProperty(context, object, key).ToLocal(&property)) {
96
return nullptr;
0 commit comments