Index: sdk/lib/_internal/compiler/implementation/lib/foreign_helper.dart |
diff --git a/sdk/lib/_internal/compiler/implementation/lib/foreign_helper.dart b/sdk/lib/_internal/compiler/implementation/lib/foreign_helper.dart |
index 3cfe86a429bfeea72fd0c862aa5ad46a357c154b..2b714eb617f3df6ed2baad26908bfe3e0e07fd24 100644 |
--- a/sdk/lib/_internal/compiler/implementation/lib/foreign_helper.dart |
+++ b/sdk/lib/_internal/compiler/implementation/lib/foreign_helper.dart |
@@ -171,3 +171,44 @@ String JS_IS_INDEXABLE_FIELD_NAME() {} |
* Returns the object corresponding to Namer.CURRENT_ISOLATE. |
*/ |
JS_CURRENT_ISOLATE() {} |
+ |
+/// Returns the name used for generated function types on classes and methods. |
+String JS_SIGNATURE_NAME() {} |
+ |
+/// Returns the name used to tag function type representations in JavaScript. |
+String JS_FUNCTION_TYPE_TAG() {} |
+ |
+/** |
+ * Returns the name used to tag void return in function type representations |
+ * in JavaScript. |
+ */ |
+String JS_FUNCTION_TYPE_VOID_RETURN_TAG() {} |
+ |
+/** |
+ * Returns the name used to tag return types in function type representations |
+ * in JavaScript. |
+ */ |
+String JS_FUNCTION_TYPE_RETURN_TYPE_TAG() {} |
+ |
+/** |
+ * Returns the name used to tag required parameters in function type |
+ * representations in JavaScript. |
+ */ |
+String JS_FUNCTION_TYPE_REQUIRED_PARAMETERS_TAG() {} |
+ |
+/** |
+ * Returns the name used to tag optional parameters in function type |
+ * representations in JavaScript. |
+ */ |
+String JS_FUNCTION_TYPE_OPTIONAL_PARAMETERS_TAG() {} |
+ |
+/** |
+ * Returns the name used to tag named parameters in function type |
+ * representations in JavaScript. |
+ */ |
+String JS_FUNCTION_TYPE_NAMED_PARAMETERS_TAG() {} |
+ |
+/** |
+ * Returns the setup object, usually called encoded as [: $ :]. |
+ */ |
+JS_SETUP_OBJECT() {} |