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
Catch_clause_parameter_cannot_have_a_type_annotation: {code: 1013,category: DiagnosticCategory.Error,key: "Catch clause parameter cannot have a type annotation."},
13
12
A_rest_parameter_must_be_last_in_a_parameter_list: {code: 1014,category: DiagnosticCategory.Error,key: "A rest parameter must be last in a parameter list."},
14
13
Parameter_cannot_have_question_mark_and_initializer: {code: 1015,category: DiagnosticCategory.Error,key: "Parameter cannot have question mark and initializer."},
15
14
A_required_parameter_cannot_follow_an_optional_parameter: {code: 1016,category: DiagnosticCategory.Error,key: "A required parameter cannot follow an optional parameter."},
@@ -153,6 +152,9 @@ module ts {
153
152
External_module_0_has_no_default_export_or_export_assignment: {code: 1192,category: DiagnosticCategory.Error,key: "External module '{0}' has no default export or export assignment."},
154
153
An_export_declaration_cannot_have_modifiers: {code: 1193,category: DiagnosticCategory.Error,key: "An export declaration cannot have modifiers."},
155
154
Export_declarations_are_not_permitted_in_an_internal_module: {code: 1194,category: DiagnosticCategory.Error,key: "Export declarations are not permitted in an internal module."},
155
+
Catch_clause_variable_name_must_be_an_identifier: {code: 1195,category: DiagnosticCategory.Error,key: "Catch clause variable name must be an identifier."},
156
+
Catch_clause_variable_cannot_have_a_type_annotation: {code: 1196,category: DiagnosticCategory.Error,key: "Catch clause variable cannot have a type annotation."},
157
+
Catch_clause_variable_cannot_have_an_initializer: {code: 1197,category: DiagnosticCategory.Error,key: "Catch clause variable cannot have an initializer."},
Initializer_of_instance_member_variable_0_cannot_reference_identifier_1_declared_in_the_constructor: {code: 2301,category: DiagnosticCategory.Error,key: "Initializer of instance member variable '{0}' cannot reference identifier '{1}' declared in the constructor."},
158
160
Static_members_cannot_reference_class_type_parameters: {code: 2302,category: DiagnosticCategory.Error,key: "Static members cannot reference class type parameters."},
0 commit comments