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 411f896 commit 3cd652fCopy full SHA for 3cd652f
2 files changed
Libraries/LibJS/Runtime/BoundFunction.h
@@ -43,7 +43,7 @@ class BoundFunction final : public FunctionObject {
43
44
GC::Ptr<FunctionObject> m_bound_target_function; // [[BoundTargetFunction]]
45
Value m_bound_this; // [[BoundThis]]
46
- GC::ValueVector<Value> m_bound_arguments; // [[BoundArguments]]
+ GC::ValueVector<Value> m_bound_arguments; // [[BoundArguments]]
47
};
48
49
template<>
Libraries/LibJS/Runtime/FinalizationRegistry.cpp
@@ -56,7 +56,7 @@ void FinalizationRegistry::remove_dead_cells(Badge<GC::Heap>)
56
if (gc_color() == GC::Color::White)
57
return;
58
59
- auto removed = [](const FinalizationRecord& rec) -> bool {
+ auto removed = [](FinalizationRecord const& rec) -> bool {
60
return rec.target || rec.target->gc_color() == GC::Color::White;
61
62
0 commit comments