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
+4-2
Original file line number
Diff line number
Diff line change
@@ -154,7 +154,7 @@ module ts {
154
154
super_property_access_is_permitted_only_in_a_constructor_member_function_or_member_accessor_of_a_derived_class: {code: 2338,category: DiagnosticCategory.Error,key: "'super' property access is permitted only in a constructor, member function, or member accessor of a derived class"},
155
155
Property_0_does_not_exist_on_type_1: {code: 2339,category: DiagnosticCategory.Error,key: "Property '{0}' does not exist on type '{1}'."},
156
156
Only_public_and_protected_methods_of_the_base_class_are_accessible_via_the_super_keyword: {code: 2340,category: DiagnosticCategory.Error,key: "Only public and protected methods of the base class are accessible via the 'super' keyword"},
157
-
Property_0_is_inaccessible: {code: 2341,category: DiagnosticCategory.Error,key: "Property '{0}' is inaccessible."},
157
+
Property_0_is_private_and_only_accessible_within_class_1: {code: 2341,category: DiagnosticCategory.Error,key: "Property '{0}' is private and only accessible within class '{1}'."},
158
158
An_index_expression_argument_must_be_of_type_string_number_or_any: {code: 2342,category: DiagnosticCategory.Error,key: "An index expression argument must be of type 'string', 'number', or 'any'."},
159
159
Type_0_does_not_satisfy_the_constraint_1_Colon: {code: 2343,category: DiagnosticCategory.Error,key: "Type '{0}' does not satisfy the constraint '{1}':"},
160
160
Type_0_does_not_satisfy_the_constraint_1: {code: 2344,category: DiagnosticCategory.Error,key: "Type '{0}' does not satisfy the constraint '{1}'."},
@@ -256,8 +256,10 @@ module ts {
256
256
Import_declaration_conflicts_with_local_declaration_of_0: {code: 2440,category: DiagnosticCategory.Error,key: "Import declaration conflicts with local declaration of '{0}'"},
257
257
Duplicate_identifier_0_Compiler_reserves_name_1_in_top_level_scope_of_an_external_module: {code: 2441,category: DiagnosticCategory.Error,key: "Duplicate identifier '{0}'. Compiler reserves name '{1}' in top level scope of an external module."},
258
258
Types_have_separate_declarations_of_a_private_property_0: {code: 2442,category: DiagnosticCategory.Error,key: "Types have separate declarations of a private property '{0}'."},
259
-
Property_0_is_protected_but_type_1_is_not_derived_from_type_2: {code: 2443,category: DiagnosticCategory.Error,key: "Property '{0}' is protected but type '{1}' is not derived from type '{2}'."},
259
+
Property_0_is_protected_but_type_1_is_not_a_class_derived_from_2: {code: 2443,category: DiagnosticCategory.Error,key: "Property '{0}' is protected but type '{1}' is not a class derived from '{2}'."},
260
260
Property_0_is_protected_in_type_1_but_public_in_type_2: {code: 2444,category: DiagnosticCategory.Error,key: "Property '{0}' is protected in type '{1}' but public in type '{2}'."},
261
+
Property_0_is_protected_and_only_accessible_within_class_1_and_its_subclasses: {code: 2445,category: DiagnosticCategory.Error,key: "Property '{0}' is protected and only accessible within class '{1}' and its subclasses."},
262
+
Property_0_is_protected_and_only_accessible_through_an_instance_of_class_1: {code: 2446,category: DiagnosticCategory.Error,key: "Property '{0}' is protected and only accessible through an instance of class '{1}'."},
261
263
Import_declaration_0_is_using_private_name_1: {code: 4000,category: DiagnosticCategory.Error,key: "Import declaration '{0}' is using private name '{1}'."},
262
264
Type_parameter_0_of_exported_class_has_or_is_using_name_1_from_private_module_2: {code: 4001,category: DiagnosticCategory.Error,key: "Type parameter '{0}' of exported class has or is using name '{1}' from private module '{2}'."},
263
265
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}'."},
0 commit comments