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
-14Lines changed: 0 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -20,22 +20,16 @@ namespace ts {
20
20
An_index_signature_must_have_a_type_annotation: {code: 1021,category: DiagnosticCategory.Error,key: "An index signature must have a type annotation."},
21
21
An_index_signature_parameter_must_have_a_type_annotation: {code: 1022,category: DiagnosticCategory.Error,key: "An index signature parameter must have a type annotation."},
22
22
An_index_signature_parameter_type_must_be_string_or_number: {code: 1023,category: DiagnosticCategory.Error,key: "An index signature parameter type must be 'string' or 'number'."},
23
-
A_class_or_interface_declaration_can_only_have_one_extends_clause: {code: 1024,category: DiagnosticCategory.Error,key: "A class or interface declaration can only have one 'extends' clause."},
24
-
An_extends_clause_must_precede_an_implements_clause: {code: 1025,category: DiagnosticCategory.Error,key: "An 'extends' clause must precede an 'implements' clause."},
25
-
A_class_can_only_extend_a_single_class: {code: 1026,category: DiagnosticCategory.Error,key: "A class can only extend a single class."},
26
-
A_class_declaration_can_only_have_one_implements_clause: {code: 1027,category: DiagnosticCategory.Error,key: "A class declaration can only have one 'implements' clause."},
_0_modifier_cannot_appear_on_a_class_element: {code: 1031,category: DiagnosticCategory.Error,key: "'{0}' modifier cannot appear on a class element."},
31
-
An_interface_declaration_cannot_have_an_implements_clause: {code: 1032,category: DiagnosticCategory.Error,key: "An interface declaration cannot have an 'implements' clause."},
32
27
super_must_be_followed_by_an_argument_list_or_member_access: {code: 1034,category: DiagnosticCategory.Error,key: "'super' must be followed by an argument list or member access."},
33
28
Only_ambient_modules_can_use_quoted_names: {code: 1035,category: DiagnosticCategory.Error,key: "Only ambient modules can use quoted names."},
34
29
Statements_are_not_allowed_in_ambient_contexts: {code: 1036,category: DiagnosticCategory.Error,key: "Statements are not allowed in ambient contexts."},
35
30
A_declare_modifier_cannot_be_used_in_an_already_ambient_context: {code: 1038,category: DiagnosticCategory.Error,key: "A 'declare' modifier cannot be used in an already ambient context."},
36
31
Initializers_are_not_allowed_in_ambient_contexts: {code: 1039,category: DiagnosticCategory.Error,key: "Initializers are not allowed in ambient contexts."},
37
32
_0_modifier_cannot_appear_on_a_module_element: {code: 1044,category: DiagnosticCategory.Error,key: "'{0}' modifier cannot appear on a module element."},
38
-
A_declare_modifier_cannot_be_used_with_an_interface_declaration: {code: 1045,category: DiagnosticCategory.Error,key: "A 'declare' modifier cannot be used with an interface declaration."},
39
33
A_declare_modifier_is_required_for_a_top_level_declaration_in_a_d_ts_file: {code: 1046,category: DiagnosticCategory.Error,key: "A 'declare' modifier is required for a top level declaration in a .d.ts file."},
40
34
A_rest_parameter_cannot_be_optional: {code: 1047,category: DiagnosticCategory.Error,key: "A rest parameter cannot be optional."},
41
35
A_rest_parameter_cannot_have_an_initializer: {code: 1048,category: DiagnosticCategory.Error,key: "A rest parameter cannot have an initializer."},
@@ -94,7 +88,6 @@ namespace ts {
94
88
case_or_default_expected: {code: 1130,category: DiagnosticCategory.Error,key: "'case' or 'default' expected."},
95
89
Property_or_signature_expected: {code: 1131,category: DiagnosticCategory.Error,key: "Property or signature expected."},
96
90
Enum_member_expected: {code: 1132,category: DiagnosticCategory.Error,key: "Enum member expected."},
Cannot_compile_modules_unless_the_module_flag_is_provided: {code: 1148,category: DiagnosticCategory.Error,key: "Cannot compile modules unless the '--module' flag is provided."},
112
105
File_name_0_differs_from_already_included_file_name_1_only_in_casing: {code: 1149,category: DiagnosticCategory.Error,key: "File name '{0}' differs from already included file name '{1}' only in casing"},
113
106
new_T_cannot_be_used_to_create_an_array_Use_new_Array_T_instead: {code: 1150,category: DiagnosticCategory.Error,key: "'new T[]' cannot be used to create an array. Use 'new Array<T>()' instead."},
114
-
var_let_or_const_expected: {code: 1152,category: DiagnosticCategory.Error,key: "'var', 'let' or 'const' expected."},
115
-
let_declarations_are_only_available_when_targeting_ECMAScript_6_and_higher: {code: 1153,category: DiagnosticCategory.Error,key: "'let' declarations are only available when targeting ECMAScript 6 and higher."},
116
-
const_declarations_are_only_available_when_targeting_ECMAScript_6_and_higher: {code: 1154,category: DiagnosticCategory.Error,key: "'const' declarations are only available when targeting ECMAScript 6 and higher."},
117
107
const_declarations_must_be_initialized: {code: 1155,category: DiagnosticCategory.Error,key: "'const' declarations must be initialized"},
118
108
const_declarations_can_only_be_declared_inside_a_block: {code: 1156,category: DiagnosticCategory.Error,key: "'const' declarations can only be declared inside a block."},
119
109
let_declarations_can_only_be_declared_inside_a_block: {code: 1157,category: DiagnosticCategory.Error,key: "'let' declarations can only be declared inside a block."},
@@ -124,7 +114,6 @@ namespace ts {
124
114
Computed_property_names_are_not_allowed_in_enums: {code: 1164,category: DiagnosticCategory.Error,key: "Computed property names are not allowed in enums."},
125
115
A_computed_property_name_in_an_ambient_context_must_directly_refer_to_a_built_in_symbol: {code: 1165,category: DiagnosticCategory.Error,key: "A computed property name in an ambient context must directly refer to a built-in symbol."},
126
116
A_computed_property_name_in_a_class_property_declaration_must_directly_refer_to_a_built_in_symbol: {code: 1166,category: DiagnosticCategory.Error,key: "A computed property name in a class property declaration must directly refer to a built-in symbol."},
127
-
Computed_property_names_are_only_available_when_targeting_ECMAScript_6_and_higher: {code: 1167,category: DiagnosticCategory.Error,key: "Computed property names are only available when targeting ECMAScript 6 and higher."},
128
117
A_computed_property_name_in_a_method_overload_must_directly_refer_to_a_built_in_symbol: {code: 1168,category: DiagnosticCategory.Error,key: "A computed property name in a method overload must directly refer to a built-in symbol."},
129
118
A_computed_property_name_in_an_interface_must_directly_refer_to_a_built_in_symbol: {code: 1169,category: DiagnosticCategory.Error,key: "A computed property name in an interface must directly refer to a built-in symbol."},
130
119
A_computed_property_name_in_a_type_literal_must_directly_refer_to_a_built_in_symbol: {code: 1170,category: DiagnosticCategory.Error,key: "A computed property name in a type literal must directly refer to a built-in symbol."},
Array_element_destructuring_pattern_expected: {code: 1181,category: DiagnosticCategory.Error,key: "Array element destructuring pattern expected."},
142
131
A_destructuring_declaration_must_have_an_initializer: {code: 1182,category: DiagnosticCategory.Error,key: "A destructuring declaration must have an initializer."},
143
-
Destructuring_declarations_are_not_allowed_in_ambient_contexts: {code: 1183,category: DiagnosticCategory.Error,key: "Destructuring declarations are not allowed in ambient contexts."},
144
132
An_implementation_cannot_be_declared_in_ambient_contexts: {code: 1184,category: DiagnosticCategory.Error,key: "An implementation cannot be declared in ambient contexts."},
A_module_cannot_have_more_than_one_export_assignment: {code: 2308,category: DiagnosticCategory.Error,key: "A module cannot have more than one export assignment."},
209
196
An_export_assignment_cannot_be_used_in_a_module_with_other_exported_elements: {code: 2309,category: DiagnosticCategory.Error,key: "An export assignment cannot be used in a module with other exported elements."},
210
197
Type_0_recursively_references_itself_as_a_base_type: {code: 2310,category: DiagnosticCategory.Error,key: "Type '{0}' recursively references itself as a base type."},
211
198
A_class_may_only_extend_another_class: {code: 2311,category: DiagnosticCategory.Error,key: "A class may only extend another class."},
@@ -531,7 +518,6 @@ namespace ts {
531
518
File_0_has_unsupported_extension_The_only_supported_extensions_are_1: {code: 6054,category: DiagnosticCategory.Error,key: "File '{0}' has unsupported extension. The only supported extensions are {1}."},
532
519
Suppress_noImplicitAny_errors_for_indexing_objects_lacking_index_signatures: {code: 6055,category: DiagnosticCategory.Message,key: "Suppress noImplicitAny errors for indexing objects lacking index signatures."},
533
520
Do_not_emit_declarations_for_code_that_has_an_internal_annotation: {code: 6056,category: DiagnosticCategory.Message,key: "Do not emit declarations for code that has an '@internal' annotation."},
534
-
Preserve_new_lines_when_emitting_code: {code: 6057,category: DiagnosticCategory.Message,key: "Preserve new-lines when emitting code."},
535
521
Specifies_the_root_directory_of_input_files_Use_to_control_the_output_directory_structure_with_outDir: {code: 6058,category: DiagnosticCategory.Message,key: "Specifies the root directory of input files. Use to control the output directory structure with --outDir."},
536
522
File_0_is_not_under_rootDir_1_rootDir_is_expected_to_contain_all_source_files: {code: 6059,category: DiagnosticCategory.Error,key: "File '{0}' is not under 'rootDir' '{1}'. 'rootDir' is expected to contain all source files."},
537
523
Specifies_the_end_of_line_sequence_to_be_used_when_emitting_files_Colon_CRLF_dos_or_LF_unix: {code: 6060,category: DiagnosticCategory.Message,key: "Specifies the end of line sequence to be used when emitting files: 'CRLF' (dos) or 'LF' (unix)."},
0 commit comments