Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(193)

Unified Diff: Source/bindings/templates/interface_base.cpp

Issue 483163003: Introduce ES6 iterator for DOM objects. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/bindings/templates/interface_base.cpp
diff --git a/Source/bindings/templates/interface_base.cpp b/Source/bindings/templates/interface_base.cpp
index 68a7cc5d3b873c49082a76d81c027af21e7a3e38..6d68242671238fb63b08200e6a7537ec2fd25bbc 100644
--- a/Source/bindings/templates/interface_base.cpp
+++ b/Source/bindings/templates/interface_base.cpp
@@ -109,6 +109,14 @@ template <typename T> void V8_USE(T) { }
{% endfor %}
{% endif %}
{% endfor %}
+{% if is_iterable %}
+namespace symbol {
+{% for world_suffix in iterator_method.world_suffixes %}
+{{generate_method(iterator_method, world_suffix)}}
+{{method_callback(iterator_method, world_suffix, '::symbol')}}
+{% endfor %}
+} // namespace symbol
+{% endif %}
{% block origin_safe_method_setter %}{% endblock %}
{# Constructors #}
{% for constructor in constructors %}

Powered by Google App Engine
This is Rietveld 408576698