| Index: tracing/tracing/extras/tquery/filter_is_top_level.html
|
| diff --git a/tracing/tracing/extras/tquery/filter_is_top_level.html b/tracing/tracing/extras/tquery/filter_is_top_level.html
|
| index 928d2e9b3af732e1073d3b2738b0489767033e05..65135ed9e4179ca4f6aa0de35cfe9c7e55a422e9 100644
|
| --- a/tracing/tracing/extras/tquery/filter_is_top_level.html
|
| +++ b/tracing/tracing/extras/tquery/filter_is_top_level.html
|
| @@ -28,10 +28,8 @@ tr.exportTo('tr.e.tquery', function() {
|
| },
|
|
|
| evaluate: function(context) {
|
| - if (context.ancestors.length > 0)
|
| - return false;
|
| - if (!this.subExpression)
|
| - return true;
|
| + if (context.ancestors.length > 0) return false;
|
| + if (!this.subExpression) return true;
|
| return this.subExpression.evaluate(context);
|
| }
|
| };
|
|
|