Chromium Code Reviews| 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 e9198f3e54fa1f90a83881485bcce50fb608fb22..43458619d6e5f3c5f85fa9be475aa28b6c14bc58 100644 |
| --- a/sdk/lib/_internal/compiler/implementation/js_backend/native_emitter.dart |
| +++ b/sdk/lib/_internal/compiler/implementation/js_backend/native_emitter.dart |
| @@ -101,7 +101,7 @@ function(cls, desc) { |
| } |
| var hasOwnProperty = Object.prototype.hasOwnProperty; |
| for (var method in desc) { |
| - if (method) { """/* Short version of: if (method != '') */""" |
| + if (method) { |
|
kasperl
2013/01/24 11:06:54
I removed this comment because the newline after t
|
| if (hasOwnProperty.call(desc, method)) { |
| $dynamicName(method)[cls] = desc[method]; |
| } |