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

Unified Diff: dart/sdk/lib/_internal/compiler/implementation/js_backend/emitter.dart

Issue 24487005: Don't rename local variables in dart_precompiled. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 3 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/sdk/lib/_internal/compiler/implementation/js_backend/emitter.dart
diff --git a/dart/sdk/lib/_internal/compiler/implementation/js_backend/emitter.dart b/dart/sdk/lib/_internal/compiler/implementation/js_backend/emitter.dart
index fc66723549685d18212851e42ef3a61de7f1c2e4..a284cbea142e8e5c5f39c59b17e4c0a31289bedf 100644
--- a/dart/sdk/lib/_internal/compiler/implementation/js_backend/emitter.dart
+++ b/dart/sdk/lib/_internal/compiler/implementation/js_backend/emitter.dart
@@ -4154,7 +4154,9 @@ if (typeof $printHelperName === "function") {
outputSourceMap(compiler.assembledCode, '');
mainBuffer.write(
- jsAst.prettyPrint(precompiledFunctionAst, compiler).getText());
+ jsAst.prettyPrint(
+ precompiledFunctionAst, compiler,
+ allowVariableMinification: false).getText());
compiler.outputProvider('', 'precompiled.js')
..add(mainBuffer.getText())
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698