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

Unified Diff: sdk/lib/_internal/pub/lib/src/command/serve.dart

Issue 238443002: Rename BuildDirectory -> SourceDirectory. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 8 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/lib/src/command/serve.dart
diff --git a/sdk/lib/_internal/pub/lib/src/command/serve.dart b/sdk/lib/_internal/pub/lib/src/command/serve.dart
index a2cc64e5400ae0c72e417f373f0818f08a8720a6..55895d60b17833da8d3ed5e608fad66bc382b7a4 100644
--- a/sdk/lib/_internal/pub/lib/src/command/serve.dart
+++ b/sdk/lib/_internal/pub/lib/src/command/serve.dart
@@ -9,7 +9,7 @@ import 'dart:math' as math;
import 'package:barback/barback.dart';
-import '../barback/build_environment.dart';
+import '../barback/asset_environment.dart';
import '../barback/pub_package_provider.dart';
import '../log.dart' as log;
import '../utils.dart';
@@ -86,7 +86,7 @@ class ServeCommand extends BarbackCommand {
var watcherType = commandOptions['force-poll'] ?
WatcherType.POLLING : WatcherType.AUTO;
- return BuildEnvironment.create(entrypoint, hostname, port, mode,
+ return AssetEnvironment.create(entrypoint, hostname, port, mode,
watcherType, useDart2JS: useDart2JS).then((environment) {
var directoryLength = sourceDirectories.map((dir) => dir.length)
@@ -132,7 +132,7 @@ class ServeCommand extends BarbackCommand {
});
}
- Future _startServer(BuildEnvironment environment, String rootDirectory,
+ Future _startServer(AssetEnvironment environment, String rootDirectory,
int directoryLength) {
return environment.serveDirectory(rootDirectory).then((server) {
// In release mode, strip out .dart files since all relevant ones have

Powered by Google App Engine
This is Rietveld 408576698