| Index: Source/bindings/templates/dictionary_impl.cpp
|
| diff --git a/Source/bindings/templates/dictionary_impl.cpp b/Source/bindings/templates/dictionary_impl.cpp
|
| index 60e56ec938cbf511e5274db520ef52f710761c52..f9771424274931d7e63a4d1601e449a08a56d9b6 100644
|
| --- a/Source/bindings/templates/dictionary_impl.cpp
|
| +++ b/Source/bindings/templates/dictionary_impl.cpp
|
| @@ -26,6 +26,9 @@ void {{cpp_class}}::trace(Visitor* visitor)
|
| {% for member in members if member.is_traceable %}
|
| visitor->trace(m_{{member.cpp_name}});
|
| {% endfor %}
|
| + {% if parent_cpp_class %}
|
| + {{parent_cpp_class}}::trace(visitor);
|
| + {% endif %}
|
| }
|
|
|
| } // namespace blink
|
|
|