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

Unified Diff: sdk/lib/_internal/pub_generated/lib/src/barback/dart_forwarding_transformer.dart

Issue 657673002: Regenerate pub sources. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: sdk/lib/_internal/pub_generated/lib/src/barback/dart_forwarding_transformer.dart
diff --git a/sdk/lib/_internal/pub_generated/lib/src/barback/dart_forwarding_transformer.dart b/sdk/lib/_internal/pub_generated/lib/src/barback/dart_forwarding_transformer.dart
index af8aea2613c70440d05d400c6e4b62e66d5e1721..d1129248f483490ba159cec7f9a9e429d43ae830 100644
--- a/sdk/lib/_internal/pub_generated/lib/src/barback/dart_forwarding_transformer.dart
+++ b/sdk/lib/_internal/pub_generated/lib/src/barback/dart_forwarding_transformer.dart
@@ -1,11 +1,29 @@
+// 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 when
+/// not in release mode.
+///
+/// Since the [Dart2JSTransformer] consumes its inputs, this is used in
+/// parallel to make sure the original Dart file is still available for use by
+/// Dartium.
class DartForwardingTransformer extends Transformer {
+ /// The mode that the transformer is running in.
final BarbackMode _mode;
+
DartForwardingTransformer(this._mode);
+
String get allowedExtensions => ".dart";
+
Future apply(Transform transform) {
return newFuture(() {
transform.addOutput(transform.primaryInput);

Powered by Google App Engine
This is Rietveld 408576698