| Index: tracing/tracing/model/event_container.html
|
| diff --git a/tracing/tracing/model/event_container.html b/tracing/tracing/model/event_container.html
|
| index aebe5f8ba05082abd2c044d5039de507b0ff966a..1b042c95e0bd3773e2135cc46f6ab76428047cb0 100644
|
| --- a/tracing/tracing/model/event_container.html
|
| +++ b/tracing/tracing/model/event_container.html
|
| @@ -83,8 +83,9 @@ tr.exportTo('tr.model', function() {
|
| */
|
| getDescendantEvents: function* () {
|
| yield* this.childEvents();
|
| - for (var container of this.childEventContainers())
|
| + for (var container of this.childEventContainers()) {
|
| yield* container.getDescendantEvents();
|
| + }
|
| },
|
|
|
| /**
|
| @@ -98,8 +99,9 @@ tr.exportTo('tr.model', function() {
|
| */
|
| getDescendantEventContainers: function* () {
|
| yield this;
|
| - for (var container of this.childEventContainers())
|
| + for (var container of this.childEventContainers()) {
|
| yield* container.getDescendantEventContainers();
|
| + }
|
| },
|
|
|
| /**
|
| @@ -124,8 +126,9 @@ tr.exportTo('tr.model', function() {
|
| * not itself a top-level slice.
|
| */
|
| findTopmostSlices: function* (eventPredicate) {
|
| - for (var ec of this.getDescendantEventContainers())
|
| + for (var ec of this.getDescendantEventContainers()) {
|
| yield* ec.findTopmostSlicesInThisContainer(eventPredicate);
|
| + }
|
| },
|
|
|
| findTopmostSlicesNamed: function* (name) {
|
|
|