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
Trailing_comma_not_allowed: {code: 1009,category: DiagnosticCategory.Error,key: "Trailing comma not allowed."},
@@ -21,10 +22,16 @@ module ts {
21
22
An_index_signature_must_have_a_type_annotation: {code: 1021,category: DiagnosticCategory.Error,key: "An index signature must have a type annotation."},
22
23
An_index_signature_parameter_must_have_a_type_annotation: {code: 1022,category: DiagnosticCategory.Error,key: "An index signature parameter must have a type annotation."},
23
24
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'."},
25
+
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."},
26
+
An_extends_clause_must_precede_am_implements_clause: {code: 1025,category: DiagnosticCategory.Error,key: "An 'extends' clause must precede am 'implements' clause."},
27
+
A_class_can_only_extend_a_single_class: {code: 1026,category: DiagnosticCategory.Error,key: "A class can only extend a single class."},
28
+
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."},
33
+
An_interface_declaration_cannot_have_an_implements_clause: {code: 1032,category: DiagnosticCategory.Error,key: "An interface declaration cannot have an 'implements' clause."},
34
+
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."},
28
35
Only_ambient_modules_can_use_quoted_names: {code: 1035,category: DiagnosticCategory.Error,key: "Only ambient modules can use quoted names."},
29
36
Statements_are_not_allowed_in_ambient_contexts: {code: 1036,category: DiagnosticCategory.Error,key: "Statements are not allowed in ambient contexts."},
30
37
A_function_implementation_cannot_be_declared_in_an_ambient_context: {code: 1037,category: DiagnosticCategory.Error,key: "A function implementation cannot be declared in an ambient context."},
@@ -46,6 +53,7 @@ module ts {
46
53
Ambient_enum_elements_can_only_have_integer_literal_initializers: {code: 1066,category: DiagnosticCategory.Error,key: "Ambient enum elements can only have integer literal initializers."},
47
54
Unexpected_token_A_constructor_method_accessor_or_property_was_expected: {code: 1068,category: DiagnosticCategory.Error,key: "Unexpected token. A constructor, method, accessor, or property was expected."},
48
55
A_declare_modifier_cannot_be_used_with_an_import_declaration: {code: 1079,category: DiagnosticCategory.Error,key: "A 'declare' modifier cannot be used with an import declaration."},
Octal_literals_are_not_available_when_targeting_ECMAScript_5_and_higher: {code: 1085,category: DiagnosticCategory.Error,key: "Octal literals are not available when targeting ECMAScript 5 and higher."},
50
58
An_accessor_cannot_be_declared_in_an_ambient_context: {code: 1086,category: DiagnosticCategory.Error,key: "An accessor cannot be declared in an ambient context."},
51
59
_0_modifier_cannot_appear_on_a_constructor_declaration: {code: 1089,category: DiagnosticCategory.Error,key: "'{0}' modifier cannot appear on a constructor declaration."},
@@ -209,7 +217,7 @@ module ts {
209
217
The_current_host_does_not_support_the_0_option: {code: 5001,category: DiagnosticCategory.Error,key: "The current host does not support the '{0}' option."},
210
218
Cannot_find_the_common_subdirectory_path_for_the_input_files: {code: 5009,category: DiagnosticCategory.Error,key: "Cannot find the common subdirectory path for the input files."},
super_must_be_followed_by_argument_list_or_member_access: {code: -9999999,category: DiagnosticCategory.Error,key: "'super' must be followed by argument list or member access."},
284
290
Line_break_not_permitted_here: {code: -9999999,category: DiagnosticCategory.Error,key: "Line break not permitted here."},
285
291
catch_or_finally_expected: {code: -9999999,category: DiagnosticCategory.Error,key: "'catch' or 'finally' expected."},
286
292
Block_or_expected: {code: -9999999,category: DiagnosticCategory.Error,key: "Block or ';' expected."},
287
293
Modifiers_not_permitted_on_index_signature_members: {code: -9999999,category: DiagnosticCategory.Error,key: "Modifiers not permitted on index signature members."},
0 commit comments