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

Side by Side Diff: pkg/barback/test/transformer/bad.dart

Issue 243793005: Don't require Transformer methods to return Futures. (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
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.transformer.bad; 5 library barback.test.transformer.bad;
6 6
7 import 'dart:async';
8
9 import 'package:barback/barback.dart'; 7 import 'package:barback/barback.dart';
10 import 'package:barback/src/utils.dart';
11 8
12 import 'mock.dart'; 9 import 'mock.dart';
13 10
14 /// A transformer that throws an exception when run, after generating the 11 /// A transformer that throws an exception when run, after generating the
15 /// given outputs. 12 /// given outputs.
16 class BadTransformer extends MockTransformer { 13 class BadTransformer extends MockTransformer {
Bob Nystrom 2014/04/21 22:32:23 A lot (all?) of the test transformers are sync now
nweiz 2014/04/21 22:46:24 They're actually still async, since they're wrappe
Bob Nystrom 2014/04/21 23:38:00 Oh, well, in that case do we have any sync transfo
nweiz 2014/04/21 23:49:41 I guess not. Done.
17 /// The error it throws. 14 /// The error it throws.
18 static const ERROR = "I am a bad transformer!"; 15 static const ERROR = "I am a bad transformer!";
19 16
20 /// The list of asset names that it should output. 17 /// The list of asset names that it should output.
21 final List<String> outputs; 18 final List<String> outputs;
22 19
23 BadTransformer(this.outputs); 20 BadTransformer(this.outputs);
24 21
25 Future<bool> doIsPrimary(AssetId id) => new Future.value(true); 22 bool doIsPrimary(AssetId id) => true;
26 23
27 Future doApply(Transform transform) { 24 void doApply(Transform transform) {
28 return newFuture(() { 25 // Create the outputs first.
29 // Create the outputs first. 26 for (var output in outputs) {
30 for (var output in outputs) { 27 var id = new AssetId.parse(output);
31 var id = new AssetId.parse(output); 28 transform.addOutput(new Asset.fromString(id, output));
32 transform.addOutput(new Asset.fromString(id, output)); 29 }
33 }
34 30
35 // Then fail. 31 // Then fail.
36 throw ERROR; 32 throw ERROR;
37 });
38 } 33 }
39 } 34 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698