| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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.phase_input; | 5 library barback.phase_input; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 import 'dart:collection'; | |
| 9 | 8 |
| 10 import 'asset.dart'; | 9 import 'asset.dart'; |
| 11 import 'asset_forwarder.dart'; | 10 import 'asset_forwarder.dart'; |
| 12 import 'asset_node.dart'; | 11 import 'asset_node.dart'; |
| 13 import 'asset_node_set.dart'; | 12 import 'asset_node_set.dart'; |
| 14 import 'errors.dart'; | 13 import 'errors.dart'; |
| 15 import 'log.dart'; | 14 import 'log.dart'; |
| 16 import 'phase.dart'; | 15 import 'phase.dart'; |
| 17 import 'stream_pool.dart'; | 16 import 'stream_pool.dart'; |
| 18 import 'transform_node.dart'; | 17 import 'transform_node.dart'; |
| (...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 } else if (_passThroughController == null) { | 327 } else if (_passThroughController == null) { |
| 329 _passThroughController = new AssetNodeController.from(input); | 328 _passThroughController = new AssetNodeController.from(input); |
| 330 _newPassThrough = true; | 329 _newPassThrough = true; |
| 331 } else if (_passThroughController.node.state.isDirty) { | 330 } else if (_passThroughController.node.state.isDirty) { |
| 332 _passThroughController.setAvailable(input.asset); | 331 _passThroughController.setAvailable(input.asset); |
| 333 } | 332 } |
| 334 } | 333 } |
| 335 | 334 |
| 336 String toString() => "phase input in $_location for $input"; | 335 String toString() => "phase input in $_location for $input"; |
| 337 } | 336 } |
| OLD | NEW |