| 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) {
|
| if (hasOwnProperty.call(desc, method)) {
|
| $dynamicName(method)[cls] = desc[method];
|
| }
|
|
|