| 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..d562867bd6bf8c06ccec769f17aa51c2b1511a84 100644
|
| --- a/Source/bindings/templates/dictionary_impl.cpp
|
| +++ b/Source/bindings/templates/dictionary_impl.cpp
|
| @@ -23,6 +23,9 @@ namespace blink {
|
|
|
| void {{cpp_class}}::trace(Visitor* visitor)
|
| {
|
| + {% if parent_cpp_class %}
|
| + {{parent_cpp_class}}::trace(visitor);
|
| + {% endif %}
|
| {% for member in members if member.is_traceable %}
|
| visitor->trace(m_{{member.cpp_name}});
|
| {% endfor %}
|
|
|