| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2014, 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.bad_log; | |
| 6 | |
| 7 import 'package:barback/barback.dart'; | |
| 8 | |
| 9 import 'mock.dart'; | |
| 10 | |
| 11 /// A transformer that logs an error when run, Before generating the given | |
| 12 /// outputs. | |
| 13 class BadLogTransformer extends MockTransformer { | |
| 14 /// The list of asset names that it should output. | |
| 15 final List<String> outputs; | |
| 16 | |
| 17 BadLogTransformer(this.outputs); | |
| 18 | |
| 19 bool doIsPrimary(AssetId id) => true; | |
| 20 | |
| 21 void doApply(Transform transform) { | |
| 22 transform.logger.error("first error"); | |
| 23 transform.logger.error("second error"); | |
| 24 | |
| 25 for (var output in outputs) { | |
| 26 var id = new AssetId.parse(output); | |
| 27 transform.addOutput(new Asset.fromString(id, output)); | |
| 28 } | |
| 29 } | |
| 30 } | |
| OLD | NEW |