| Index: sdk/lib/_internal/compiler/js_lib/shared/embedded_names.dart
|
| diff --git a/sdk/lib/_internal/compiler/js_lib/shared/embedded_names.dart b/sdk/lib/_internal/compiler/js_lib/shared/embedded_names.dart
|
| index 96b38f6f795de4490d9326a303b77305c2831f0c..aa899bdbe567f8b2e670f9f68c27cf4fc0b4faaf 100644
|
| --- a/sdk/lib/_internal/compiler/js_lib/shared/embedded_names.dart
|
| +++ b/sdk/lib/_internal/compiler/js_lib/shared/embedded_names.dart
|
| @@ -16,14 +16,17 @@ const TYPE_INFORMATION = 'typeInformation';
|
| const GLOBAL_FUNCTIONS = 'globalFunctions';
|
| const STATICS = 'statics';
|
|
|
| -/**
|
| - * If [JSInvocationMirror._invokeOn] is being used, this embedded global
|
| - * contains a JavaScript map with the names of methods that are
|
| - * intercepted.
|
| - */
|
| +/// If [JSInvocationMirror._invokeOn] is being used, this embedded global
|
| +/// contains a JavaScript map with the names of methods that are
|
| +/// intercepted.
|
| const INTERCEPTED_NAMES = 'interceptedNames';
|
|
|
| +/// A JS map from mangled global names to their unmangled names.
|
| +///
|
| +/// If the program does not use reflection may be empty (but not null or
|
| +/// undefined).
|
| const MANGLED_GLOBAL_NAMES = 'mangledGlobalNames';
|
| +
|
| const MANGLED_NAMES = 'mangledNames';
|
| const LIBRARIES = 'libraries';
|
| const FINISHED_CLASSES = 'finishedClasses';
|
| @@ -49,10 +52,8 @@ const TYPEDEF_TYPE_PROPERTY_NAME = r"$typedefType";
|
| const TYPEDEF_PREDICATE_PROPERTY_NAME = r"$$isTypedef";
|
| const NATIVE_SUPERCLASS_TAG_NAME = r"$nativeSuperclassTag";
|
|
|
| -/**
|
| - * Returns the type given the name of a class.
|
| - * This function is called by the runtime when computing rti.
|
| - */
|
| +/// Returns the type given the name of a class.
|
| +/// This function is called by the runtime when computing rti.
|
| const GET_TYPE_FROM_NAME = 'getTypeFromName';
|
| const TYPE_TO_INTERCEPTOR_MAP = "typeToInterceptorMap";
|
|
|
|
|