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

Unified Diff: sdk/lib/_internal/pub/test/serve/utils.dart

Issue 26027002: Add flag to pub serve to disable dart2js. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Revise. Created 7 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/test/serve/utils.dart
diff --git a/sdk/lib/_internal/pub/test/serve/utils.dart b/sdk/lib/_internal/pub/test/serve/utils.dart
index 46d2a148fea25791f2c46b5f5b4509b150ac0558..8e3985c010b13026d9d7f3c66e27da24dfaf1f41 100644
--- a/sdk/lib/_internal/pub/test/serve/utils.dart
+++ b/sdk/lib/_internal/pub/test/serve/utils.dart
@@ -88,11 +88,19 @@ class DartTransformer extends Transformer {
/// Schedules starting the "pub serve" process.
///
/// If [shouldInstallFirst] is `true`, validates that pub install is run first.
+/// If [dart2js] is `false`, does not compile Dart entrypoints in "web" to
+/// JavaScript.
///
/// Returns the `pub serve` process.
-ScheduledProcess startPubServe({bool shouldInstallFirst: false}) {
+ScheduledProcess startPubServe({bool shouldInstallFirst: false,
+ bool dart2js: true}) {
+
// Use port 0 to get an ephemeral port.
- _pubServer = startPub(args: ["serve", "--port=0", "--hostname=127.0.0.1"]);
+ var args = ["serve", "--port=0", "--hostname=127.0.0.1"];
+
+ if (!dart2js) args.add("--no-dart2js");
+
+ _pubServer = startPub(args: args);
if (shouldInstallFirst) {
expect(_pubServer.nextLine(),

Powered by Google App Engine
This is Rietveld 408576698