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

Unified Diff: lib/src/compiler/compiler.dart

Issue 2197243002: Rename build-root to library-root (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Created 4 years, 5 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
« no previous file with comments | « lib/src/compiler/command.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/compiler/compiler.dart
diff --git a/lib/src/compiler/compiler.dart b/lib/src/compiler/compiler.dart
index 5f94f0a99788d55d408409ee862dde3796f09e7e..a708b3c0f0fd7012ffa63e2655d5db28f5bb9fb7 100644
--- a/lib/src/compiler/compiler.dart
+++ b/lib/src/compiler/compiler.dart
@@ -292,8 +292,8 @@ class BuildUnit {
/// The name of this module.
final String name;
- /// Build root. All library names are relative to this path/prefix.
- final String buildRoot;
+ /// Library root. All library names are relative to this path/prefix.
+ final String libraryRoot;
/// The list of sources in this module.
///
@@ -308,7 +308,7 @@ class BuildUnit {
// build units.
final Func1<Source, String> libraryToModule;
- BuildUnit(this.name, this.buildRoot, this.sources, this.libraryToModule);
+ BuildUnit(this.name, this.libraryRoot, this.sources, this.libraryToModule);
}
/// The output of Dart->JS compilation.
« no previous file with comments | « lib/src/compiler/command.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698