| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 library barback.transformer.wrapping_aggregate_transformer; | 5 library barback.transformer.wrapping_aggregate_transformer; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 | 8 |
| 9 import '../asset/asset_id.dart'; | 9 import '../asset/asset_id.dart'; |
| 10 import '../utils.dart'; | 10 import '../utils.dart'; |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 } | 75 } |
| 76 | 76 |
| 77 /// A wrapper for [LazyTransformer]s that implements | 77 /// A wrapper for [LazyTransformer]s that implements |
| 78 /// [LazyAggregateTransformer]. | 78 /// [LazyAggregateTransformer]. |
| 79 class _LazyWrappingAggregateTransformer | 79 class _LazyWrappingAggregateTransformer |
| 80 extends _DeclaringWrappingAggregateTransformer | 80 extends _DeclaringWrappingAggregateTransformer |
| 81 implements LazyAggregateTransformer { | 81 implements LazyAggregateTransformer { |
| 82 _LazyWrappingAggregateTransformer(LazyTransformer transformer) | 82 _LazyWrappingAggregateTransformer(LazyTransformer transformer) |
| 83 : super(transformer); | 83 : super(transformer); |
| 84 } | 84 } |
| OLD | NEW |