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

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

Issue 231603005: Preserve laziness in declaring transformers. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: code review Created 6 years, 8 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
« no previous file with comments | « no previous file | pkg/barback/lib/src/phase.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.asset_node; 5 library barback.asset_node;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 8
9 import 'asset.dart'; 9 import 'asset.dart';
10 import 'asset_id.dart'; 10 import 'asset_id.dart';
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 Asset _asset; 51 Asset _asset;
52 52
53 /// The callback to be called to notify this asset node's creator that the 53 /// The callback to be called to notify this asset node's creator that the
54 /// concrete asset should be generated. 54 /// concrete asset should be generated.
55 /// 55 ///
56 /// This is null for non-lazy asset nodes (see [AssetNodeController.lazy]). 56 /// This is null for non-lazy asset nodes (see [AssetNodeController.lazy]).
57 /// Once this is called, it's set to null and [this] is no longer considered 57 /// Once this is called, it's set to null and [this] is no longer considered
58 /// lazy. 58 /// lazy.
59 Function _lazyCallback; 59 Function _lazyCallback;
60 60
61 /// Whether this is lazy and needs [force] to be called before it will be
62 /// marked available.
63 bool get isLazy => _lazyCallback != null;
64
61 /// A broadcast stream that emits an event whenever the node changes state. 65 /// A broadcast stream that emits an event whenever the node changes state.
62 /// 66 ///
63 /// This stream is synchronous to ensure that when a source asset is modified 67 /// This stream is synchronous to ensure that when a source asset is modified
64 /// or removed, the appropriate portion of the asset graph is dirtied before 68 /// or removed, the appropriate portion of the asset graph is dirtied before
65 /// any [Barback.getAssetById] calls emit newly-incorrect values. 69 /// any [Barback.getAssetById] calls emit newly-incorrect values.
66 Stream<AssetState> get onStateChange => _stateChangeController.stream; 70 Stream<AssetState> get onStateChange => _stateChangeController.stream;
67 71
68 /// This is synchronous so that a source being updated will always be 72 /// This is synchronous so that a source being updated will always be
69 /// propagated through the build graph before anything that depends on it is 73 /// propagated through the build graph before anything that depends on it is
70 /// requested. 74 /// requested.
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 269
266 /// Whether this state is [AssetState.DIRTY]. 270 /// Whether this state is [AssetState.DIRTY].
267 bool get isDirty => this == AssetState.DIRTY; 271 bool get isDirty => this == AssetState.DIRTY;
268 272
269 final String name; 273 final String name;
270 274
271 const AssetState._(this.name); 275 const AssetState._(this.name);
272 276
273 String toString() => name; 277 String toString() => name;
274 } 278 }
OLDNEW
« no previous file with comments | « no previous file | pkg/barback/lib/src/phase.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698