Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(50)

Side by Side Diff: pkg/barback/lib/src/phase_input.dart

Issue 178223024: Refactor the Transform classes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698