| 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.aggregate_transform; | 5 library barback.transformer.aggregate_transform; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 import 'dart:convert'; | 8 import 'dart:convert'; |
| 9 | 9 |
| 10 import '../asset/asset.dart'; | 10 import '../asset/asset.dart'; |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 } | 142 } |
| 143 | 143 |
| 144 /// Returns whether an input with the given [id] was added via [addInput]. | 144 /// Returns whether an input with the given [id] was added via [addInput]. |
| 145 bool addedId(AssetId id) => | 145 bool addedId(AssetId id) => |
| 146 transform._emittedPrimaryInputs.containsId(id); | 146 transform._emittedPrimaryInputs.containsId(id); |
| 147 | 147 |
| 148 void done() { | 148 void done() { |
| 149 transform._inputController.close(); | 149 transform._inputController.close(); |
| 150 } | 150 } |
| 151 } | 151 } |
| OLD | NEW |