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

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

Issue 808713003: Remove barback from the repo. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years 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
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 library barback.test.transformer.declaring_bad;
6
7 import 'package:barback/barback.dart';
8
9 import 'bad.dart';
10 import 'mock.dart';
11
12 /// A transformer that throws an exception when run, after generating the
13 /// given outputs.
14 class DeclaringBadTransformer extends MockTransformer
15 implements DeclaringTransformer {
16 /// Whether this should throw an error in [declareOutputs].
17 final bool declareError;
18
19 /// Whether this should throw an error in [apply].
20 final bool applyError;
21
22 /// The id of the output asset to emit.
23 final AssetId output;
24
25 DeclaringBadTransformer(String output, {bool declareError: true,
26 bool applyError: false})
27 : this.output = new AssetId.parse(output),
28 this.declareError = declareError,
29 this.applyError = applyError;
30
31 bool doIsPrimary(AssetId id) => true;
32
33 void doApply(Transform transform) {
34 transform.addOutput(new Asset.fromString(output, "bad out"));
35 if (applyError) throw BadTransformer.ERROR;
36 }
37
38 void declareOutputs(DeclaringTransform transform) {
39 if (consumePrimary) transform.consumePrimary();
40 transform.declareOutput(output);
41 if (declareError) throw BadTransformer.ERROR;
42 }
43 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698