 Chromium Code Reviews
 Chromium Code Reviews Issue 11453032:
  Reapply class/method/field minification  (Closed) 
  Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
    
  
    Issue 11453032:
  Reapply class/method/field minification  (Closed) 
  Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart| 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); }'; |