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
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -353,6 +353,8 @@ module ts {
353
353
The_arguments_object_cannot_be_referenced_in_an_arrow_function_Consider_using_a_standard_function_expression: {code: 2496,category: DiagnosticCategory.Error,key: "The 'arguments' object cannot be referenced in an arrow function. Consider using a standard function expression."},
354
354
External_module_0_resolves_to_a_non_module_entity_and_cannot_be_imported_using_this_construct: {code: 2497,category: DiagnosticCategory.Error,key: "External module '{0}' resolves to a non-module entity and cannot be imported using this construct."},
355
355
External_module_0_uses_export_and_cannot_be_used_with_export_Asterisk: {code: 2498,category: DiagnosticCategory.Error,key: "External module '{0}' uses 'export =' and cannot be used with 'export *'."},
356
+
An_interface_can_only_extend_an_identifier_Slashqualified_name_with_optional_type_arguments: {code: 2499,category: DiagnosticCategory.Error,key: "An interface can only extend an identifier/qualified-name with optional type arguments."},
357
+
A_class_can_only_implement_an_identifier_Slashqualified_name_with_optional_type_arguments: {code: 2500,category: DiagnosticCategory.Error,key: "A class can only implement an identifier/qualified-name with optional type arguments."},
356
358
Import_declaration_0_is_using_private_name_1: {code: 4000,category: DiagnosticCategory.Error,key: "Import declaration '{0}' is using private name '{1}'."},
357
359
Type_parameter_0_of_exported_class_has_or_is_using_private_name_1: {code: 4002,category: DiagnosticCategory.Error,key: "Type parameter '{0}' of exported class has or is using private name '{1}'."},
358
360
Type_parameter_0_of_exported_interface_has_or_is_using_private_name_1: {code: 4004,category: DiagnosticCategory.Error,key: "Type parameter '{0}' of exported interface has or is using private name '{1}'."},
@@ -505,5 +507,8 @@ module ts {
505
507
You_cannot_rename_elements_that_are_defined_in_the_standard_TypeScript_library: {code: 8001,category: DiagnosticCategory.Error,key: "You cannot rename elements that are defined in the standard TypeScript library."},
506
508
yield_expressions_are_not_currently_supported: {code: 9000,category: DiagnosticCategory.Error,key: "'yield' expressions are not currently supported."},
507
509
Generators_are_not_currently_supported: {code: 9001,category: DiagnosticCategory.Error,key: "Generators are not currently supported."},
510
+
Only_identifiers_Slashqualified_names_with_optional_type_arguments_are_currently_supported_in_a_class_extends_clauses: {code: 9002,category: DiagnosticCategory.Error,key: "Only identifiers/qualified-names with optional type arguments are currently supported in a class 'extends' clauses."},
511
+
class_expressions_are_not_currently_supported: {code: 9003,category: DiagnosticCategory.Error,key: "'class' expressions are not currently supported."},
512
+
class_declarations_are_only_supported_directly_inside_a_module_or_as_a_top_level_declaration: {code: 9004,category: DiagnosticCategory.Error,key: "'class' declarations are only supported directly inside a module or as a top level declaration."},
0 commit comments