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

Side by Side Diff: pkg/barback/test/utils.dart

Issue 241223005: Fix a deadlock bug with lazy transformer pipelining. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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 | « pkg/barback/test/transformer/lazy_assets.dart ('k') | no next file » | 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.test.utils; 5 library barback.test.utils;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 import 'dart:collection'; 8 import 'dart:collection';
9 import 'dart:convert' show Encoding; 9 import 'dart:convert' show Encoding;
10 10
(...skipping 10 matching lines...) Expand all
21 export 'transformer/catch_asset_not_found.dart'; 21 export 'transformer/catch_asset_not_found.dart';
22 export 'transformer/check_content.dart'; 22 export 'transformer/check_content.dart';
23 export 'transformer/check_content_and_rename.dart'; 23 export 'transformer/check_content_and_rename.dart';
24 export 'transformer/conditionally_consume_primary.dart'; 24 export 'transformer/conditionally_consume_primary.dart';
25 export 'transformer/create_asset.dart'; 25 export 'transformer/create_asset.dart';
26 export 'transformer/declare_assets.dart'; 26 export 'transformer/declare_assets.dart';
27 export 'transformer/declaring_bad.dart'; 27 export 'transformer/declaring_bad.dart';
28 export 'transformer/declaring_rewrite.dart'; 28 export 'transformer/declaring_rewrite.dart';
29 export 'transformer/emit_nothing.dart'; 29 export 'transformer/emit_nothing.dart';
30 export 'transformer/has_input.dart'; 30 export 'transformer/has_input.dart';
31 export 'transformer/lazy_assets.dart';
31 export 'transformer/lazy_bad.dart'; 32 export 'transformer/lazy_bad.dart';
32 export 'transformer/lazy_many_to_one.dart'; 33 export 'transformer/lazy_many_to_one.dart';
33 export 'transformer/lazy_rewrite.dart'; 34 export 'transformer/lazy_rewrite.dart';
34 export 'transformer/many_to_one.dart'; 35 export 'transformer/many_to_one.dart';
35 export 'transformer/mock.dart'; 36 export 'transformer/mock.dart';
36 export 'transformer/one_to_many.dart'; 37 export 'transformer/one_to_many.dart';
37 export 'transformer/rewrite.dart'; 38 export 'transformer/rewrite.dart';
38 39
39 var _configured = false; 40 var _configured = false;
40 41
(...skipping 538 matching lines...) Expand 10 before | Expand all | Expand 10 after
579 580
580 _MockAsset(this.id, this.contents); 581 _MockAsset(this.id, this.contents);
581 582
582 Future<String> readAsString({Encoding encoding}) => 583 Future<String> readAsString({Encoding encoding}) =>
583 new Future.value(contents); 584 new Future.value(contents);
584 585
585 Stream<List<int>> read() => throw new UnimplementedError(); 586 Stream<List<int>> read() => throw new UnimplementedError();
586 587
587 String toString() => "MockAsset $id $contents"; 588 String toString() => "MockAsset $id $contents";
588 } 589 }
OLDNEW
« no previous file with comments | « pkg/barback/test/transformer/lazy_assets.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698