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

Unified Diff: lib/build/mirrors_remover.dart

Issue 1091903002: Move DomProxyMixin to this package (Closed) Base URL: git@github.com:dart-lang/web-components.git@master
Patch Set: format Created 5 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
« no previous file with comments | « CHANGELOG.md ('k') | lib/custom_element_proxy.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/build/mirrors_remover.dart
diff --git a/lib/build/mirrors_remover.dart b/lib/build/mirrors_remover.dart
index 069a2a2cac3670001344c3ad7ab23775bc713cdf..62dedaaca4b5288c570267cb749f33d178e83e1f 100644
--- a/lib/build/mirrors_remover.dart
+++ b/lib/build/mirrors_remover.dart
@@ -17,9 +17,9 @@ class MirrorsRemoverTransformer extends Transformer {
@override
Future apply(Transform transform) async {
String source = await transform.primaryInput.readAsString();
- source = source.replaceAll(
- 'mirror_initializer.dart', 'static_initializer.dart');
- transform.addOutput(
- new Asset.fromString(transform.primaryInput.id, source));
+ source =
+ source.replaceAll('mirror_initializer.dart', 'static_initializer.dart');
+ transform
+ .addOutput(new Asset.fromString(transform.primaryInput.id, source));
}
}
« no previous file with comments | « CHANGELOG.md ('k') | lib/custom_element_proxy.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698