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

Unified Diff: test/build/import_crawler_test.dart

Issue 993423004: Fix normalization of relative paths inside of deep relative imports (Closed) Base URL: git@github.com:dart-lang/web-components.git@master
Patch Set: format Created 5 years, 9 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 | « pubspec.yaml ('k') | test/build/import_inliner_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/build/import_crawler_test.dart
diff --git a/test/build/import_crawler_test.dart b/test/build/import_crawler_test.dart
index c140c09a9fb1c61908007cec295236f937be7126..42f85bd90be93acfd557f816dec2aa485f431c01 100644
--- a/test/build/import_crawler_test.dart
+++ b/test/build/import_crawler_test.dart
@@ -34,11 +34,11 @@ class _TestTransformer extends Transformer {
}
}
- Future crawlDocument(
- Transform transform, BuildLogger logger, [Document document]) {
+ Future crawlDocument(Transform transform, BuildLogger logger,
+ [Document document]) {
var primaryInput = transform.primaryInput;
- var crawler = new ImportCrawler(
- transform, primaryInput.id, logger, primaryDocument: document);
+ var crawler = new ImportCrawler(transform, primaryInput.id, logger,
+ primaryDocument: document);
return crawler.crawlImports().then((docs) {
documents = docs;
transform.addOutput(new Asset.fromString(
« no previous file with comments | « pubspec.yaml ('k') | test/build/import_inliner_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698