Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(262)

Unified Diff: sdk/lib/_internal/compiler/js_lib/shared/embedded_names.dart

Issue 1158423005: Move IS_INDEXABLE_FIELD to JsGetName. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sdk/lib/_internal/compiler/js_lib/native_helper.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 9118548e3b13f67489ee2fa85e34144ac1b22fc6..734ddb95db7808e5f54e4ca175de557ede530502 100644
--- a/sdk/lib/_internal/compiler/js_lib/shared/embedded_names.dart
+++ b/sdk/lib/_internal/compiler/js_lib/shared/embedded_names.dart
@@ -93,14 +93,30 @@ enum JsGetName {
DEFAULT_VALUES_PROPERTY,
CALL_NAME_PROPERTY,
DEFERRED_ACTION_PROPERTY,
+ /// Prefix used for generated type argument substitutions on classes.
OPERATOR_AS_PREFIX,
+ /// Name used for generated function types on classes and methods.
SIGNATURE_NAME,
+ /// Name used to tag typedefs.
TYPEDEF_TAG,
+ /// Name used to tag void return in function type representations in
+ /// JavaScript.
FUNCTION_TYPE_VOID_RETURN_TAG,
+ /// Name used to tag return types in function type representations in
+ /// JavaScript.
FUNCTION_TYPE_RETURN_TYPE_TAG,
+ /// Name used to tag required parameters in function type representations
+ /// in JavaScript.
FUNCTION_TYPE_REQUIRED_PARAMETERS_TAG,
+ /// Name used to tag optional parameters in function type representations
+ /// in JavaScript.
FUNCTION_TYPE_OPTIONAL_PARAMETERS_TAG,
+ /// Name used to tag named parameters in function type representations in
+ /// JavaScript.
FUNCTION_TYPE_NAMED_PARAMETERS_TAG,
+ /// Field name used for determining if an object or its interceptor has
+ /// JavaScript indexing behavior.
+ IS_INDEXABLE_FIELD_NAME,
}
enum JsBuiltin {
« no previous file with comments | « sdk/lib/_internal/compiler/js_lib/native_helper.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698