Index: sdk/lib/_internal/compiler/implementation/js_backend/namer.dart |
=================================================================== |
--- sdk/lib/_internal/compiler/implementation/js_backend/namer.dart (revision 32895) |
+++ sdk/lib/_internal/compiler/implementation/js_backend/namer.dart (working copy) |
@@ -227,6 +227,8 @@ |
final String methodsWithOptionalArgumentsField = |
r'$methodsWithOptionalArguments'; |
+ final String classDescriptorProperty = r'^'; |
+ |
// Name of property in a class description for the native dispatch metadata. |
final String nativeSpecProperty = '%'; |
@@ -290,6 +292,7 @@ |
case 'SETTER_PREFIX': return setterPrefix; |
case 'CALL_CATCH_ALL': return callCatchAllName; |
case 'REFLECTABLE': return reflectableField; |
+ case 'CLASS_DESCRIPTOR_PROPERTY': return classDescriptorProperty; |
default: |
compiler.reportError( |
node, MessageKind.GENERIC, |