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 0d90052 commit d2bc0c1Copy full SHA for d2bc0c1
src/heap_utils.cc
@@ -117,10 +117,9 @@ class JSGraph : public EmbedderGraph {
117
Local<String> wraps_string = FIXED_ONE_BYTE_STRING(isolate_, "wraps");
118
Local<String> to_string = FIXED_ONE_BYTE_STRING(isolate_, "to");
119
120
- {
+ for (const std::unique_ptr<Node>& n : nodes_) {
121
HandleScope handle_scope(isolate_);
122
- for (const std::unique_ptr<Node>& n : nodes_)
123
- info_objects[n.get()] = Object::New(isolate_);
+ info_objects[n.get()] = Object::New(isolate_);
124
}
125
126
{
0 commit comments