Chromium Code Reviews| Index: sdk/lib/_internal/pub/lib/src/barback/dart_forwarding_transformer.dart |
| diff --git a/sdk/lib/_internal/pub/lib/src/barback/dart_forwarding_transformer.dart b/sdk/lib/_internal/pub/lib/src/barback/dart_forwarding_transformer.dart |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..ebc247f110edebd361fce88256526b183622b762 |
| --- /dev/null |
| +++ b/sdk/lib/_internal/pub/lib/src/barback/dart_forwarding_transformer.dart |
| @@ -0,0 +1,24 @@ |
| +// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| +// for details. All rights reserved. Use of this source code is governed by a |
| +// BSD-style license that can be found in the LICENSE file. |
| + |
| +library pub.dart_forwarding_transformer; |
| + |
| +import 'dart:async'; |
| + |
| +import 'package:barback/barback.dart'; |
| + |
| +import '../utils.dart'; |
| + |
| +/// A single transformer that just forwards any ".dart" file as an output. |
|
nweiz
2013/09/27 22:21:17
Style nit: Paragraph break after the first sentenc
Bob Nystrom
2013/09/28 00:56:11
Done.
|
| +/// Since the [Dart2JSTransformer] consumes its inputs, this is used in |
| +/// parallel to make sure the original Dart file is still available. |
|
nweiz
2013/09/27 22:21:17
Mention that this is done to support Dartium.
Bob Nystrom
2013/09/28 00:56:11
Done.
|
| +class DartForwardingTransformer extends Transformer { |
| + String get allowedExtensions => ".dart"; |
| + |
| + Future apply(Transform transform) { |
| + return newFuture(() { |
| + transform.addOutput(transform.primaryInput); |
| + }); |
| + } |
| +} |