You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/compiler/diagnosticInformationMap.generated.ts
+16
Original file line number
Diff line number
Diff line change
@@ -105,6 +105,22 @@ module ts {
105
105
Extends_clause_of_exported_class_0_has_or_is_using_name_1_from_private_module_2: {code: 2021,category: DiagnosticCategory.Error,key: "Extends clause of exported class '{0}' has or is using name '{1}' from private module '{2}'."},
106
106
Implements_clause_of_exported_class_0_has_or_is_using_name_1_from_private_module_2: {code: 2022,category: DiagnosticCategory.Error,key: "Implements clause of exported class '{0}' has or is using name '{1}' from private module '{2}'."},
107
107
Extends_clause_of_exported_interface_0_has_or_is_using_name_1_from_private_module_2: {code: 2023,category: DiagnosticCategory.Error,key: "Extends clause of exported interface '{0}' has or is using name '{1}' from private module '{2}'."},
108
+
TypeParameter_0_of_constructor_signature_from_exported_interface_has_or_is_using_private_name_1: {code: 2208,category: DiagnosticCategory.Error,key: "TypeParameter '{0}' of constructor signature from exported interface has or is using private name '{1}'."},
109
+
TypeParameter_0_of_call_signature_from_exported_interface_has_or_is_using_private_name_1: {code: 2209,category: DiagnosticCategory.Error,key: "TypeParameter '{0}' of call signature from exported interface has or is using private name '{1}'."},
110
+
TypeParameter_0_of_public_static_method_from_exported_class_has_or_is_using_private_name_1: {code: 2210,category: DiagnosticCategory.Error,key: "TypeParameter '{0}' of public static method from exported class has or is using private name '{1}'."},
111
+
TypeParameter_0_of_public_method_from_exported_class_has_or_is_using_private_name_1: {code: 2211,category: DiagnosticCategory.Error,key: "TypeParameter '{0}' of public method from exported class has or is using private name '{1}'."},
112
+
TypeParameter_0_of_method_from_exported_interface_has_or_is_using_private_name_1: {code: 2212,category: DiagnosticCategory.Error,key: "TypeParameter '{0}' of method from exported interface has or is using private name '{1}'."},
113
+
TypeParameter_0_of_exported_function_has_or_is_using_private_name_1: {code: 2213,category: DiagnosticCategory.Error,key: "TypeParameter '{0}' of exported function has or is using private name '{1}'."},
114
+
TypeParameter_0_of_constructor_signature_from_exported_interface_has_or_is_using_name_1_from_private_module_2: {code: 2214,category: DiagnosticCategory.Error,key: "TypeParameter '{0}' of constructor signature from exported interface has or is using name '{1}' from private module '{2}'."},
115
+
TypeParameter_0_of_call_signature_from_exported_interface_has_or_is_using_name_1_from_private_module_2: {code: 2215,category: DiagnosticCategory.Error,key: "TypeParameter '{0}' of call signature from exported interface has or is using name '{1}' from private module '{2}'."},
116
+
TypeParameter_0_of_public_static_method_from_exported_class_has_or_is_using_name_1_from_private_module_2: {code: 2216,category: DiagnosticCategory.Error,key: "TypeParameter '{0}' of public static method from exported class has or is using name '{1}' from private module '{2}'."},
117
+
TypeParameter_0_of_public_method_from_exported_class_has_or_is_using_name_1_from_private_module_2: {code: 2217,category: DiagnosticCategory.Error,key: "TypeParameter '{0}' of public method from exported class has or is using name '{1}' from private module '{2}'."},
118
+
TypeParameter_0_of_method_from_exported_interface_has_or_is_using_name_1_from_private_module_2: {code: 2218,category: DiagnosticCategory.Error,key: "TypeParameter '{0}' of method from exported interface has or is using name '{1}' from private module '{2}'."},
119
+
TypeParameter_0_of_exported_function_has_or_is_using_name_1_from_private_module_2: {code: 2219,category: DiagnosticCategory.Error,key: "TypeParameter '{0}' of exported function has or is using name '{1}' from private module '{2}'."},
120
+
TypeParameter_0_of_exported_class_has_or_is_using_private_name_1: {code: 2220,category: DiagnosticCategory.Error,key: "TypeParameter '{0}' of exported class has or is using private name '{1}'."},
121
+
TypeParameter_0_of_exported_interface_has_or_is_using_private_name_1: {code: 2221,category: DiagnosticCategory.Error,key: "TypeParameter '{0}' of exported interface has or is using private name '{1}'."},
122
+
TypeParameter_0_of_exported_class_has_or_is_using_name_1_from_private_module_2: {code: 2222,category: DiagnosticCategory.Error,key: "TypeParameter '{0}' of exported class has or is using name '{1}' from private module '{2}'."},
123
+
TypeParameter_0_of_exported_interface_has_or_is_using_name_1_from_private_module_2: {code: 2223,category: DiagnosticCategory.Error,key: "TypeParameter '{0}' of exported interface has or is using name '{1}' from private module '{2}'."},
108
124
new_T_cannot_be_used_to_create_an_array_Use_new_Array_T_instead: {code: 2068,category: DiagnosticCategory.Error,key: "'new T[]' cannot be used to create an array. Use 'new Array<T>()' instead."},
109
125
Multiple_constructor_implementations_are_not_allowed: {code: 2070,category: DiagnosticCategory.Error,key: "Multiple constructor implementations are not allowed."},
110
126
A_class_may_only_implement_another_class_or_interface: {code: 2074,category: DiagnosticCategory.Error,key: "A class may only implement another class or interface."},
0 commit comments