From 4ad0b4338ab0bf1efd44cf67074516a6eb44a087 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20=C5=9Aliwak?= Date: Mon, 25 Jan 2021 11:16:03 +0100 Subject: [PATCH] Fix the 'intheritance' typo in the name of the of the subdirectories in semanticTests/ --- .../{intheritance => inheritance}/access_base_storage.sol | 0 .../{intheritance => inheritance}/address_overload_resolution.sol | 0 .../base_access_to_function_type_variables.sol | 0 .../derived_overload_base_function_direct.sol | 0 .../derived_overload_base_function_indirect.sol | 0 .../{intheritance => inheritance}/explicit_base_class.sol | 0 .../inherited_constant_state_var.sol | 0 .../{intheritance => inheritance}/inherited_function.sol | 0 .../inherited_function_calldata_calldata_interface.sol | 0 .../inherited_function_calldata_memory.sol | 0 .../inherited_function_calldata_memory_interface.sol | 0 .../inherited_function_from_a_library.sol | 0 .../inherited_function_through_dispatch.sol | 0 .../{intheritance => inheritance}/member_notation_ctor.sol | 0 .../overloaded_function_call_resolve_to_first.sol | 0 .../overloaded_function_call_resolve_to_second.sol | 0 .../overloaded_function_call_with_if_else.sol | 0 .../pass_dynamic_arguments_to_the_base.sol | 0 .../pass_dynamic_arguments_to_the_base_base.sol | 0 .../pass_dynamic_arguments_to_the_base_base_with_gap.sol | 0 .../{intheritance => inheritance}/super_in_constructor.sol | 0 .../super_in_constructor_assignment.sol | 0 .../{intheritance => inheritance}/super_overload.sol | 0 .../{intheritance => inheritance}/value_for_constructor.sol | 0 24 files changed, 0 insertions(+), 0 deletions(-) rename test/libsolidity/semanticTests/{intheritance => inheritance}/access_base_storage.sol (100%) rename test/libsolidity/semanticTests/{intheritance => inheritance}/address_overload_resolution.sol (100%) rename test/libsolidity/semanticTests/{intheritance => inheritance}/base_access_to_function_type_variables.sol (100%) rename test/libsolidity/semanticTests/{intheritance => inheritance}/derived_overload_base_function_direct.sol (100%) rename test/libsolidity/semanticTests/{intheritance => inheritance}/derived_overload_base_function_indirect.sol (100%) rename test/libsolidity/semanticTests/{intheritance => inheritance}/explicit_base_class.sol (100%) rename test/libsolidity/semanticTests/{intheritance => inheritance}/inherited_constant_state_var.sol (100%) rename test/libsolidity/semanticTests/{intheritance => inheritance}/inherited_function.sol (100%) rename test/libsolidity/semanticTests/{intheritance => inheritance}/inherited_function_calldata_calldata_interface.sol (100%) rename test/libsolidity/semanticTests/{intheritance => inheritance}/inherited_function_calldata_memory.sol (100%) rename test/libsolidity/semanticTests/{intheritance => inheritance}/inherited_function_calldata_memory_interface.sol (100%) rename test/libsolidity/semanticTests/{intheritance => inheritance}/inherited_function_from_a_library.sol (100%) rename test/libsolidity/semanticTests/{intheritance => inheritance}/inherited_function_through_dispatch.sol (100%) rename test/libsolidity/semanticTests/{intheritance => inheritance}/member_notation_ctor.sol (100%) rename test/libsolidity/semanticTests/{intheritance => inheritance}/overloaded_function_call_resolve_to_first.sol (100%) rename test/libsolidity/semanticTests/{intheritance => inheritance}/overloaded_function_call_resolve_to_second.sol (100%) rename test/libsolidity/semanticTests/{intheritance => inheritance}/overloaded_function_call_with_if_else.sol (100%) rename test/libsolidity/semanticTests/{intheritance => inheritance}/pass_dynamic_arguments_to_the_base.sol (100%) rename test/libsolidity/semanticTests/{intheritance => inheritance}/pass_dynamic_arguments_to_the_base_base.sol (100%) rename test/libsolidity/semanticTests/{intheritance => inheritance}/pass_dynamic_arguments_to_the_base_base_with_gap.sol (100%) rename test/libsolidity/semanticTests/{intheritance => inheritance}/super_in_constructor.sol (100%) rename test/libsolidity/semanticTests/{intheritance => inheritance}/super_in_constructor_assignment.sol (100%) rename test/libsolidity/semanticTests/{intheritance => inheritance}/super_overload.sol (100%) rename test/libsolidity/semanticTests/{intheritance => inheritance}/value_for_constructor.sol (100%) diff --git a/test/libsolidity/semanticTests/intheritance/access_base_storage.sol b/test/libsolidity/semanticTests/inheritance/access_base_storage.sol similarity index 100% rename from test/libsolidity/semanticTests/intheritance/access_base_storage.sol rename to test/libsolidity/semanticTests/inheritance/access_base_storage.sol diff --git a/test/libsolidity/semanticTests/intheritance/address_overload_resolution.sol b/test/libsolidity/semanticTests/inheritance/address_overload_resolution.sol similarity index 100% rename from test/libsolidity/semanticTests/intheritance/address_overload_resolution.sol rename to test/libsolidity/semanticTests/inheritance/address_overload_resolution.sol diff --git a/test/libsolidity/semanticTests/intheritance/base_access_to_function_type_variables.sol b/test/libsolidity/semanticTests/inheritance/base_access_to_function_type_variables.sol similarity index 100% rename from test/libsolidity/semanticTests/intheritance/base_access_to_function_type_variables.sol rename to test/libsolidity/semanticTests/inheritance/base_access_to_function_type_variables.sol diff --git a/test/libsolidity/semanticTests/intheritance/derived_overload_base_function_direct.sol b/test/libsolidity/semanticTests/inheritance/derived_overload_base_function_direct.sol similarity index 100% rename from test/libsolidity/semanticTests/intheritance/derived_overload_base_function_direct.sol rename to test/libsolidity/semanticTests/inheritance/derived_overload_base_function_direct.sol diff --git a/test/libsolidity/semanticTests/intheritance/derived_overload_base_function_indirect.sol b/test/libsolidity/semanticTests/inheritance/derived_overload_base_function_indirect.sol similarity index 100% rename from test/libsolidity/semanticTests/intheritance/derived_overload_base_function_indirect.sol rename to test/libsolidity/semanticTests/inheritance/derived_overload_base_function_indirect.sol diff --git a/test/libsolidity/semanticTests/intheritance/explicit_base_class.sol b/test/libsolidity/semanticTests/inheritance/explicit_base_class.sol similarity index 100% rename from test/libsolidity/semanticTests/intheritance/explicit_base_class.sol rename to test/libsolidity/semanticTests/inheritance/explicit_base_class.sol diff --git a/test/libsolidity/semanticTests/intheritance/inherited_constant_state_var.sol b/test/libsolidity/semanticTests/inheritance/inherited_constant_state_var.sol similarity index 100% rename from test/libsolidity/semanticTests/intheritance/inherited_constant_state_var.sol rename to test/libsolidity/semanticTests/inheritance/inherited_constant_state_var.sol diff --git a/test/libsolidity/semanticTests/intheritance/inherited_function.sol b/test/libsolidity/semanticTests/inheritance/inherited_function.sol similarity index 100% rename from test/libsolidity/semanticTests/intheritance/inherited_function.sol rename to test/libsolidity/semanticTests/inheritance/inherited_function.sol diff --git a/test/libsolidity/semanticTests/intheritance/inherited_function_calldata_calldata_interface.sol b/test/libsolidity/semanticTests/inheritance/inherited_function_calldata_calldata_interface.sol similarity index 100% rename from test/libsolidity/semanticTests/intheritance/inherited_function_calldata_calldata_interface.sol rename to test/libsolidity/semanticTests/inheritance/inherited_function_calldata_calldata_interface.sol diff --git a/test/libsolidity/semanticTests/intheritance/inherited_function_calldata_memory.sol b/test/libsolidity/semanticTests/inheritance/inherited_function_calldata_memory.sol similarity index 100% rename from test/libsolidity/semanticTests/intheritance/inherited_function_calldata_memory.sol rename to test/libsolidity/semanticTests/inheritance/inherited_function_calldata_memory.sol diff --git a/test/libsolidity/semanticTests/intheritance/inherited_function_calldata_memory_interface.sol b/test/libsolidity/semanticTests/inheritance/inherited_function_calldata_memory_interface.sol similarity index 100% rename from test/libsolidity/semanticTests/intheritance/inherited_function_calldata_memory_interface.sol rename to test/libsolidity/semanticTests/inheritance/inherited_function_calldata_memory_interface.sol diff --git a/test/libsolidity/semanticTests/intheritance/inherited_function_from_a_library.sol b/test/libsolidity/semanticTests/inheritance/inherited_function_from_a_library.sol similarity index 100% rename from test/libsolidity/semanticTests/intheritance/inherited_function_from_a_library.sol rename to test/libsolidity/semanticTests/inheritance/inherited_function_from_a_library.sol diff --git a/test/libsolidity/semanticTests/intheritance/inherited_function_through_dispatch.sol b/test/libsolidity/semanticTests/inheritance/inherited_function_through_dispatch.sol similarity index 100% rename from test/libsolidity/semanticTests/intheritance/inherited_function_through_dispatch.sol rename to test/libsolidity/semanticTests/inheritance/inherited_function_through_dispatch.sol diff --git a/test/libsolidity/semanticTests/intheritance/member_notation_ctor.sol b/test/libsolidity/semanticTests/inheritance/member_notation_ctor.sol similarity index 100% rename from test/libsolidity/semanticTests/intheritance/member_notation_ctor.sol rename to test/libsolidity/semanticTests/inheritance/member_notation_ctor.sol diff --git a/test/libsolidity/semanticTests/intheritance/overloaded_function_call_resolve_to_first.sol b/test/libsolidity/semanticTests/inheritance/overloaded_function_call_resolve_to_first.sol similarity index 100% rename from test/libsolidity/semanticTests/intheritance/overloaded_function_call_resolve_to_first.sol rename to test/libsolidity/semanticTests/inheritance/overloaded_function_call_resolve_to_first.sol diff --git a/test/libsolidity/semanticTests/intheritance/overloaded_function_call_resolve_to_second.sol b/test/libsolidity/semanticTests/inheritance/overloaded_function_call_resolve_to_second.sol similarity index 100% rename from test/libsolidity/semanticTests/intheritance/overloaded_function_call_resolve_to_second.sol rename to test/libsolidity/semanticTests/inheritance/overloaded_function_call_resolve_to_second.sol diff --git a/test/libsolidity/semanticTests/intheritance/overloaded_function_call_with_if_else.sol b/test/libsolidity/semanticTests/inheritance/overloaded_function_call_with_if_else.sol similarity index 100% rename from test/libsolidity/semanticTests/intheritance/overloaded_function_call_with_if_else.sol rename to test/libsolidity/semanticTests/inheritance/overloaded_function_call_with_if_else.sol diff --git a/test/libsolidity/semanticTests/intheritance/pass_dynamic_arguments_to_the_base.sol b/test/libsolidity/semanticTests/inheritance/pass_dynamic_arguments_to_the_base.sol similarity index 100% rename from test/libsolidity/semanticTests/intheritance/pass_dynamic_arguments_to_the_base.sol rename to test/libsolidity/semanticTests/inheritance/pass_dynamic_arguments_to_the_base.sol diff --git a/test/libsolidity/semanticTests/intheritance/pass_dynamic_arguments_to_the_base_base.sol b/test/libsolidity/semanticTests/inheritance/pass_dynamic_arguments_to_the_base_base.sol similarity index 100% rename from test/libsolidity/semanticTests/intheritance/pass_dynamic_arguments_to_the_base_base.sol rename to test/libsolidity/semanticTests/inheritance/pass_dynamic_arguments_to_the_base_base.sol diff --git a/test/libsolidity/semanticTests/intheritance/pass_dynamic_arguments_to_the_base_base_with_gap.sol b/test/libsolidity/semanticTests/inheritance/pass_dynamic_arguments_to_the_base_base_with_gap.sol similarity index 100% rename from test/libsolidity/semanticTests/intheritance/pass_dynamic_arguments_to_the_base_base_with_gap.sol rename to test/libsolidity/semanticTests/inheritance/pass_dynamic_arguments_to_the_base_base_with_gap.sol diff --git a/test/libsolidity/semanticTests/intheritance/super_in_constructor.sol b/test/libsolidity/semanticTests/inheritance/super_in_constructor.sol similarity index 100% rename from test/libsolidity/semanticTests/intheritance/super_in_constructor.sol rename to test/libsolidity/semanticTests/inheritance/super_in_constructor.sol diff --git a/test/libsolidity/semanticTests/intheritance/super_in_constructor_assignment.sol b/test/libsolidity/semanticTests/inheritance/super_in_constructor_assignment.sol similarity index 100% rename from test/libsolidity/semanticTests/intheritance/super_in_constructor_assignment.sol rename to test/libsolidity/semanticTests/inheritance/super_in_constructor_assignment.sol diff --git a/test/libsolidity/semanticTests/intheritance/super_overload.sol b/test/libsolidity/semanticTests/inheritance/super_overload.sol similarity index 100% rename from test/libsolidity/semanticTests/intheritance/super_overload.sol rename to test/libsolidity/semanticTests/inheritance/super_overload.sol diff --git a/test/libsolidity/semanticTests/intheritance/value_for_constructor.sol b/test/libsolidity/semanticTests/inheritance/value_for_constructor.sol similarity index 100% rename from test/libsolidity/semanticTests/intheritance/value_for_constructor.sol rename to test/libsolidity/semanticTests/inheritance/value_for_constructor.sol