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

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

Issue 11453032: Reapply class/method/field minification (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Changes to bring patch up to date and fix bugs Created 8 years 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/compiler/implementation/js_backend/native_emitter.dart
diff --git a/sdk/lib/_internal/compiler/implementation/js_backend/native_emitter.dart b/sdk/lib/_internal/compiler/implementation/js_backend/native_emitter.dart
index 6b8771dd6e4c24347add9832ca39ae47d409547d..0bfff7a3432aa2e1aeb9bd2732936ecc9026b369 100644
--- a/sdk/lib/_internal/compiler/implementation/js_backend/native_emitter.dart
+++ b/sdk/lib/_internal/compiler/implementation/js_backend/native_emitter.dart
@@ -540,8 +540,7 @@ function(cls, desc) {
'function() { return $toStringHelperName(this); }';
// Same as above, but for hashCode.
- String hashCodeName = backend.namer.publicGetterName(
- const SourceString('hashCode'));
+ String hashCodeName = backend.namer.publicGetterName(new SourceString('hashCode'));
sra1 2012/12/07 06:03:18 const SourceString(...)
erikcorry 2012/12/10 08:36:01 Done.
objectProperties[hashCodeName] =
'function() { return $hashCodeHelperName(this); }';

Powered by Google App Engine
This is Rietveld 408576698