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: CONTRIBUTING.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ TypeScript is currently accepting contributions in the form of bug fixes. A bug
4
4
## Contributing features
5
5
Features (things that add new or improved functionality to TypeScript) may be accepted, but will need to first be approved (marked as "Milestone == Community" by a TypeScript coordinator with the message "Approved") in the suggestion issue. Features with language design impact, or that are adequately satisfied with external tools, will not be accepted.
6
6
7
-
Design changes will not be accepted at this time. If you have a design change proposal, please log a suggesion issue.
7
+
Design changes will not be accepted at this time. If you have a design change proposal, please log a suggestion issue.
8
8
9
9
## Legal
10
10
You will need to complete a Contributor License Agreement (CLA). Briefly, this agreement testifies that you are granting us permission to use the submitted change according to the terms of the project's license, and that the work being submitted is under appropriate copyright.
Copy file name to clipboardExpand all lines: src/compiler/diagnosticInformationMap.generated.ts
+8-2Lines changed: 8 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -140,6 +140,7 @@ module ts {
140
140
A_signature_with_an_implementation_cannot_use_a_string_literal_type: {code: 2163,category: DiagnosticCategory.Error,key: "A signature with an implementation cannot use a string literal type."},
Initializer_of_parameter_0_cannot_reference_identifier_1_declared_after_it: {code: 2190,category: DiagnosticCategory.Error,key: "Initializer of parameter '{0}' cannot reference identifier '{1}' declared after it."},
143
+
Individual_declarations_in_merged_declaration_0_must_be_all_exported_or_all_local: {code: 2192,category: DiagnosticCategory.Error,key: "Individual declarations in merged declaration {0} must be all exported or all local."},
143
144
super_cannot_be_referenced_in_constructor_arguments: {code: 2193,category: DiagnosticCategory.Error,key: "'super' cannot be referenced in constructor arguments."},
144
145
Return_type_of_constructor_signature_must_be_assignable_to_the_instance_type_of_the_class: {code: 2194,category: DiagnosticCategory.Error,key: "Return type of constructor signature must be assignable to the instance type of the class"},
Duplicate_number_index_signature: {code: 2233,category: DiagnosticCategory.Error,key: "Duplicate number index signature."},
158
159
All_declarations_of_an_interface_must_have_identical_type_parameters: {code: 2234,category: DiagnosticCategory.Error,key: "All declarations of an interface must have identical type parameters."},
159
160
Expression_resolves_to_variable_declaration_i_that_compiler_uses_to_initialize_rest_parameter: {code: 2235,category: DiagnosticCategory.Error,key: "Expression resolves to variable declaration '_i' that compiler uses to initialize rest parameter."},
Function_implementation_name_must_be_0: {code: 2239,category: DiagnosticCategory.Error,key: "Function implementation name must be '{0}'."},
162
+
Constructor_implementation_is_missing: {code: 2240,category: DiagnosticCategory.Error,key: "Constructor implementation is missing."},
161
163
An_export_assignment_cannot_be_used_in_a_module_with_other_exported_elements: {code: 2245,category: DiagnosticCategory.Error,key: "An export assignment cannot be used in a module with other exported elements."},
162
164
A_parameter_property_is_only_allowed_in_a_constructor_implementation: {code: 2246,category: DiagnosticCategory.Error,key: "A parameter property is only allowed in a constructor implementation."},
165
+
Function_overload_must_be_static: {code: 2247,category: DiagnosticCategory.Error,key: "Function overload must be static."},
166
+
Function_overload_must_not_be_static: {code: 2248,category: DiagnosticCategory.Error,key: "Function overload must not be static."},
163
167
Circular_definition_of_import_alias_0: {code: 3000,category: DiagnosticCategory.Error,key: "Circular definition of import alias '{0}'."},
164
168
Cannot_find_name_0: {code: 3001,category: DiagnosticCategory.Error,key: "Cannot find name '{0}'."},
165
169
Module_0_has_no_exported_member_1: {code: 3002,category: DiagnosticCategory.Error,key: "Module '{0}' has no exported member '{1}'."},
@@ -211,6 +215,7 @@ module ts {
211
215
Could_not_write_file_0_Colon_1: {code: 5033,category: DiagnosticCategory.Error,key: "Could not write file '{0}': {1}"},
212
216
Option_mapRoot_cannot_be_specified_without_specifying_sourcemap_option: {code: 5038,category: DiagnosticCategory.Error,key: "Option mapRoot cannot be specified without specifying sourcemap option."},
213
217
Option_sourceRoot_cannot_be_specified_without_specifying_sourcemap_option: {code: 5039,category: DiagnosticCategory.Error,key: "Option sourceRoot cannot be specified without specifying sourcemap option."},
Variable_0_implicitly_has_an_1_type: {code: 7005,category: DiagnosticCategory.Error,key: "Variable '{0}' implicitly has an '{1}' type."},
215
220
Parameter_0_implicitly_has_an_1_type: {code: 7006,category: DiagnosticCategory.Error,key: "Parameter '{0}' implicitly has an '{1}' type."},
216
221
Member_0_implicitly_has_an_1_type: {code: 7008,category: DiagnosticCategory.Error,key: "Member '{0}' implicitly has an '{1}' type."},
@@ -275,7 +280,7 @@ module ts {
275
280
Types_of_parameters_0_and_1_are_incompatible_Colon: {code: -9999999,category: DiagnosticCategory.Error,key: "Types of parameters '{0}' and '{1}' are incompatible:"},
Function_implementation_is_missing_or_not_immediately_following_the_declaration: {code: -9999999,category: DiagnosticCategory.Error,key: "Function implementation is missing or not immediately following the declaration."},
279
284
Property_0_of_type_1_is_not_assignable_to_string_index_type_2: {code: -9999999,category: DiagnosticCategory.Error,key: "Property '{0}' of type '{1}' is not assignable to string index type '{2}'."},
280
285
Property_0_of_type_1_is_not_assignable_to_numeric_index_type_2: {code: -9999999,category: DiagnosticCategory.Error,key: "Property '{0}' of type '{1}' is not assignable to numeric index type '{2}'."},
281
286
Numeric_index_type_0_is_not_assignable_to_string_index_type_1: {code: -9999999,category: DiagnosticCategory.Error,key: "Numeric index type '{0}' is not assignable to string index type '{1}'."},
@@ -294,6 +299,7 @@ module ts {
294
299
A_module_declaration_cannot_be_located_prior_to_a_class_or_function_with_which_it_is_merged: {code: -9999999,category: DiagnosticCategory.Error,key: "A module declaration cannot be located prior to a class or function with which it is merged"},
295
300
Cannot_compile_external_modules_unless_the_module_flag_is_provided: {code: -9999999,category: DiagnosticCategory.Error,key: "Cannot compile external modules unless the '--module' flag is provided."},
296
301
Import_declaration_conflicts_with_local_declaration_of_0: {code: -9999999,category: DiagnosticCategory.Error,key: "Import declaration conflicts with local declaration of '{0}'"},
302
+
Module_0_is_hidden_by_a_local_declaration_with_the_same_name: {code: -9999999,category: DiagnosticCategory.Error,key: "Module '{0}' is hidden by a local declaration with the same name"},
297
303
Filename_0_differs_from_already_included_filename_1_only_in_casing: {code: -9999999,category: DiagnosticCategory.Error,key: "Filename '{0}' differs from already included filename '{1}' only in casing"},
298
304
Argument_for_module_option_must_be_commonjs_or_amd: {code: -9999999,category: DiagnosticCategory.Error,key: "Argument for '--module' option must be 'commonjs' or 'amd'."},
299
305
Argument_for_target_option_must_be_es3_or_es5: {code: -9999999,category: DiagnosticCategory.Error,key: "Argument for '--target' option must be 'es3' or 'es5'."},
0 commit comments