| Index: sdk/lib/_internal/compiler/implementation/js_emitter/reflection_data_parser.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/js_emitter/reflection_data_parser.dart b/sdk/lib/_internal/compiler/implementation/js_emitter/reflection_data_parser.dart
|
| index 09c7979caa946f688b2d5d82d9382fc06e475463..bc13d80766871923a784705637033c41ed0776f6 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/js_emitter/reflection_data_parser.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/js_emitter/reflection_data_parser.dart
|
| @@ -224,7 +224,7 @@ String getReflectionDataParser(String classesCollector,
|
| var globalObject = data[3];
|
| var descriptor = data[4];
|
| var isRoot = !!data[5];
|
| - var fields = descriptor && descriptor["${namer.classDescriptorProperty}"];
|
| + var fields = descriptor && descriptor[""];
|
| var classes = [];
|
| var functions = [];
|
| ''';
|
| @@ -233,7 +233,7 @@ String getReflectionDataParser(String classesCollector,
|
| function processStatics(descriptor) {
|
| for (var property in descriptor) {
|
| if (!hasOwnProperty.call(descriptor, property)) continue;
|
| - if (property === "${namer.classDescriptorProperty}") continue;
|
| + if (property === "") continue;
|
| var element = descriptor[property];
|
| var firstChar = property.substring(0, 1);
|
| var previousProperty;
|
|
|