LICENSE
README.md
pyproject.toml
setup.py
slither/__init__.py
slither/__main__.py
slither/all_exceptions.py
slither/exceptions.py
slither/slither.py
slither/analyses/__init__.py
slither/analyses/data_dependency/__init__.py
slither/analyses/data_dependency/data_dependency.py
slither/analyses/evm/__init__.py
slither/analyses/evm/convert.py
slither/analyses/evm/evm_cfg_builder.py
slither/analyses/write/__init__.py
slither/analyses/write/are_variables_written.py
slither/core/__init__.py
slither/core/compilation_unit.py
slither/core/exceptions.py
slither/core/slither_core.py
slither/core/cfg/__init__.py
slither/core/cfg/node.py
slither/core/cfg/scope.py
slither/core/context/__init__.py
slither/core/context/context.py
slither/core/declarations/__init__.py
slither/core/declarations/contract.py
slither/core/declarations/contract_level.py
slither/core/declarations/custom_error.py
slither/core/declarations/custom_error_contract.py
slither/core/declarations/custom_error_top_level.py
slither/core/declarations/enum.py
slither/core/declarations/enum_contract.py
slither/core/declarations/enum_top_level.py
slither/core/declarations/event.py
slither/core/declarations/event_contract.py
slither/core/declarations/event_top_level.py
slither/core/declarations/function.py
slither/core/declarations/function_contract.py
slither/core/declarations/function_top_level.py
slither/core/declarations/import_directive.py
slither/core/declarations/modifier.py
slither/core/declarations/pragma_directive.py
slither/core/declarations/solidity_import_placeholder.py
slither/core/declarations/solidity_variables.py
slither/core/declarations/structure.py
slither/core/declarations/structure_contract.py
slither/core/declarations/structure_top_level.py
slither/core/declarations/top_level.py
slither/core/declarations/using_for_top_level.py
slither/core/dominators/__init__.py
slither/core/dominators/node_dominator_tree.py
slither/core/dominators/utils.py
slither/core/expressions/__init__.py
slither/core/expressions/assignment_operation.py
slither/core/expressions/binary_operation.py
slither/core/expressions/call_expression.py
slither/core/expressions/conditional_expression.py
slither/core/expressions/elementary_type_name_expression.py
slither/core/expressions/expression.py
slither/core/expressions/identifier.py
slither/core/expressions/index_access.py
slither/core/expressions/literal.py
slither/core/expressions/member_access.py
slither/core/expressions/new_array.py
slither/core/expressions/new_contract.py
slither/core/expressions/new_elementary_type.py
slither/core/expressions/self_identifier.py
slither/core/expressions/super_call_expression.py
slither/core/expressions/super_identifier.py
slither/core/expressions/tuple_expression.py
slither/core/expressions/type_conversion.py
slither/core/expressions/unary_operation.py
slither/core/scope/__init__.py
slither/core/scope/scope.py
slither/core/solidity_types/__init__.py
slither/core/solidity_types/array_type.py
slither/core/solidity_types/elementary_type.py
slither/core/solidity_types/function_type.py
slither/core/solidity_types/mapping_type.py
slither/core/solidity_types/type.py
slither/core/solidity_types/type_alias.py
slither/core/solidity_types/type_information.py
slither/core/solidity_types/user_defined_type.py
slither/core/source_mapping/__init__.py
slither/core/source_mapping/source_mapping.py
slither/core/variables/__init__.py
slither/core/variables/event_variable.py
slither/core/variables/function_type_variable.py
slither/core/variables/local_variable.py
slither/core/variables/local_variable_init_from_tuple.py
slither/core/variables/state_variable.py
slither/core/variables/structure_variable.py
slither/core/variables/top_level_variable.py
slither/core/variables/variable.py
slither/detectors/__init__.py
slither/detectors/abstract_detector.py
slither/detectors/all_detectors.py
slither/detectors/assembly/__init__.py
slither/detectors/assembly/incorrect_return.py
slither/detectors/assembly/return_instead_of_leave.py
slither/detectors/assembly/shift_parameter_mixup.py
slither/detectors/attributes/__init__.py
slither/detectors/attributes/const_functions_asm.py
slither/detectors/attributes/const_functions_state.py
slither/detectors/attributes/constant_pragma.py
slither/detectors/attributes/incorrect_solc.py
slither/detectors/attributes/locked_ether.py
slither/detectors/attributes/unimplemented_interface.py
slither/detectors/compiler_bugs/__init__.py
slither/detectors/compiler_bugs/array_by_reference.py
slither/detectors/compiler_bugs/enum_conversion.py
slither/detectors/compiler_bugs/multiple_constructor_schemes.py
slither/detectors/compiler_bugs/public_mapping_nested.py
slither/detectors/compiler_bugs/reused_base_constructor.py
slither/detectors/compiler_bugs/storage_ABIEncoderV2_array.py
slither/detectors/compiler_bugs/storage_signed_integer_array.py
slither/detectors/compiler_bugs/uninitialized_function_ptr_in_constructor.py
slither/detectors/erc/__init__.py
slither/detectors/erc/incorrect_erc721_interface.py
slither/detectors/erc/unindexed_event_parameters.py
slither/detectors/erc/erc20/__init__.py
slither/detectors/erc/erc20/arbitrary_send_erc20.py
slither/detectors/erc/erc20/arbitrary_send_erc20_no_permit.py
slither/detectors/erc/erc20/arbitrary_send_erc20_permit.py
slither/detectors/erc/erc20/incorrect_erc20_interface.py
slither/detectors/examples/__init__.py
slither/detectors/examples/backdoor.py
slither/detectors/functions/__init__.py
slither/detectors/functions/arbitrary_send_eth.py
slither/detectors/functions/chainlink_feed_registry.py
slither/detectors/functions/codex.py
slither/detectors/functions/cyclomatic_complexity.py
slither/detectors/functions/dead_code.py
slither/detectors/functions/external_function.py
slither/detectors/functions/gelato_unprotected_randomness.py
slither/detectors/functions/modifier.py
slither/detectors/functions/optimism_deprecation.py
slither/detectors/functions/out_of_order_retryable.py
slither/detectors/functions/permit_domain_signature_collision.py
slither/detectors/functions/protected_variable.py
slither/detectors/functions/pyth_deprecated_functions.py
slither/detectors/functions/suicidal.py
slither/detectors/functions/unimplemented.py
slither/detectors/naming_convention/__init__.py
slither/detectors/naming_convention/naming_convention.py
slither/detectors/operations/__init__.py
slither/detectors/operations/bad_prng.py
slither/detectors/operations/block_timestamp.py
slither/detectors/operations/cache_array_length.py
slither/detectors/operations/encode_packed.py
slither/detectors/operations/incorrect_exp.py
slither/detectors/operations/low_level_calls.py
slither/detectors/operations/missing_events_access_control.py
slither/detectors/operations/missing_events_arithmetic.py
slither/detectors/operations/missing_zero_address_validation.py
slither/detectors/operations/unchecked_low_level_return_values.py
slither/detectors/operations/unchecked_send_return_value.py
slither/detectors/operations/unchecked_transfer.py
slither/detectors/operations/unused_return_values.py
slither/detectors/operations/void_constructor.py
slither/detectors/reentrancy/__init__.py
slither/detectors/reentrancy/reentrancy.py
slither/detectors/reentrancy/reentrancy_benign.py
slither/detectors/reentrancy/reentrancy_eth.py
slither/detectors/reentrancy/reentrancy_events.py
slither/detectors/reentrancy/reentrancy_no_gas.py
slither/detectors/reentrancy/reentrancy_read_before_write.py
slither/detectors/reentrancy/token.py
slither/detectors/shadowing/__init__.py
slither/detectors/shadowing/abstract.py
slither/detectors/shadowing/builtin_symbols.py
slither/detectors/shadowing/common.py
slither/detectors/shadowing/local.py
slither/detectors/shadowing/state.py
slither/detectors/slither/__init__.py
slither/detectors/slither/name_reused.py
slither/detectors/source/__init__.py
slither/detectors/source/rtlo.py
slither/detectors/statements/__init__.py
slither/detectors/statements/array_length_assignment.py
slither/detectors/statements/assembly.py
slither/detectors/statements/assert_state_change.py
slither/detectors/statements/boolean_constant_equality.py
slither/detectors/statements/boolean_constant_misuse.py
slither/detectors/statements/calls_in_loop.py
slither/detectors/statements/chronicle_unchecked_price.py
slither/detectors/statements/controlled_delegatecall.py
slither/detectors/statements/costly_operations_in_loop.py
slither/detectors/statements/delegatecall_in_loop.py
slither/detectors/statements/deprecated_calls.py
slither/detectors/statements/divide_before_multiply.py
slither/detectors/statements/incorrect_strict_equality.py
slither/detectors/statements/incorrect_using_for.py
slither/detectors/statements/mapping_deletion.py
slither/detectors/statements/msg_value_in_loop.py
slither/detectors/statements/pyth_unchecked.py
slither/detectors/statements/pyth_unchecked_confidence.py
slither/detectors/statements/pyth_unchecked_publishtime.py
slither/detectors/statements/redundant_statements.py
slither/detectors/statements/return_bomb.py
slither/detectors/statements/tautological_compare.py
slither/detectors/statements/too_many_digits.py
slither/detectors/statements/tx_origin.py
slither/detectors/statements/type_based_tautology.py
slither/detectors/statements/unary.py
slither/detectors/statements/unprotected_upgradeable.py
slither/detectors/statements/unused_import.py
slither/detectors/statements/write_after_write.py
slither/detectors/variables/__init__.py
slither/detectors/variables/could_be_constant.py
slither/detectors/variables/could_be_immutable.py
slither/detectors/variables/function_init_state_variables.py
slither/detectors/variables/predeclaration_usage_local.py
slither/detectors/variables/unchanged_state_variables.py
slither/detectors/variables/uninitialized_local_variables.py
slither/detectors/variables/uninitialized_state_variables.py
slither/detectors/variables/uninitialized_storage_variables.py
slither/detectors/variables/unused_state_variables.py
slither/detectors/variables/var_read_using_this.py
slither/formatters/__init__.py
slither/formatters/exceptions.py
slither/formatters/attributes/__init__.py
slither/formatters/attributes/const_functions.py
slither/formatters/attributes/constant_pragma.py
slither/formatters/attributes/incorrect_solc.py
slither/formatters/functions/__init__.py
slither/formatters/functions/external_function.py
slither/formatters/naming_convention/__init__.py
slither/formatters/naming_convention/naming_convention.py
slither/formatters/utils/__init__.py
slither/formatters/utils/patches.py
slither/formatters/variables/__init__.py
slither/formatters/variables/unchanged_state_variables.py
slither/formatters/variables/unused_state_variables.py
slither/printers/__init__.py
slither/printers/abstract_printer.py
slither/printers/all_printers.py
slither/printers/call/__init__.py
slither/printers/call/call_graph.py
slither/printers/functions/__init__.py
slither/printers/functions/authorization.py
slither/printers/functions/cfg.py
slither/printers/functions/dominator.py
slither/printers/guidance/__init__.py
slither/printers/guidance/echidna.py
slither/printers/inheritance/__init__.py
slither/printers/inheritance/inheritance.py
slither/printers/inheritance/inheritance_graph.py
slither/printers/summary/__init__.py
slither/printers/summary/cheatcodes.py
slither/printers/summary/ck.py
slither/printers/summary/constructor_calls.py
slither/printers/summary/contract.py
slither/printers/summary/data_depenency.py
slither/printers/summary/declaration.py
slither/printers/summary/entry_points.py
slither/printers/summary/evm.py
slither/printers/summary/function.py
slither/printers/summary/function_ids.py
slither/printers/summary/halstead.py
slither/printers/summary/human_summary.py
slither/printers/summary/loc.py
slither/printers/summary/martin.py
slither/printers/summary/modifier_calls.py
slither/printers/summary/require_calls.py
slither/printers/summary/slithir.py
slither/printers/summary/slithir_ssa.py
slither/printers/summary/variable_order.py
slither/printers/summary/when_not_paused.py
slither/slithir/__init__.py
slither/slithir/convert.py
slither/slithir/exceptions.py
slither/slithir/operations/__init__.py
slither/slithir/operations/assignment.py
slither/slithir/operations/binary.py
slither/slithir/operations/call.py
slither/slithir/operations/codesize.py
slither/slithir/operations/condition.py
slither/slithir/operations/delete.py
slither/slithir/operations/event_call.py
slither/slithir/operations/high_level_call.py
slither/slithir/operations/index.py
slither/slithir/operations/init_array.py
slither/slithir/operations/internal_call.py
slither/slithir/operations/internal_dynamic_call.py
slither/slithir/operations/length.py
slither/slithir/operations/library_call.py
slither/slithir/operations/low_level_call.py
slither/slithir/operations/lvalue.py
slither/slithir/operations/member.py
slither/slithir/operations/new_array.py
slither/slithir/operations/new_contract.py
slither/slithir/operations/new_elementary_type.py
slither/slithir/operations/new_structure.py
slither/slithir/operations/nop.py
slither/slithir/operations/operation.py
slither/slithir/operations/phi.py
slither/slithir/operations/phi_callback.py
slither/slithir/operations/return_operation.py
slither/slithir/operations/send.py
slither/slithir/operations/solidity_call.py
slither/slithir/operations/transfer.py
slither/slithir/operations/type_conversion.py
slither/slithir/operations/unary.py
slither/slithir/operations/unpack.py
slither/slithir/tmp_operations/__init__.py
slither/slithir/tmp_operations/argument.py
slither/slithir/tmp_operations/tmp_call.py
slither/slithir/tmp_operations/tmp_new_array.py
slither/slithir/tmp_operations/tmp_new_contract.py
slither/slithir/tmp_operations/tmp_new_elementary_type.py
slither/slithir/tmp_operations/tmp_new_structure.py
slither/slithir/utils/__init__.py
slither/slithir/utils/ssa.py
slither/slithir/utils/utils.py
slither/slithir/variables/__init__.py
slither/slithir/variables/constant.py
slither/slithir/variables/local_variable.py
slither/slithir/variables/reference.py
slither/slithir/variables/reference_ssa.py
slither/slithir/variables/state_variable.py
slither/slithir/variables/temporary.py
slither/slithir/variables/temporary_ssa.py
slither/slithir/variables/tuple.py
slither/slithir/variables/tuple_ssa.py
slither/slithir/variables/variable.py
slither/solc_parsing/__init__.py
slither/solc_parsing/exceptions.py
slither/solc_parsing/slither_compilation_unit_solc.py
slither/solc_parsing/cfg/__init__.py
slither/solc_parsing/cfg/node.py
slither/solc_parsing/declarations/__init__.py
slither/solc_parsing/declarations/caller_context.py
slither/solc_parsing/declarations/contract.py
slither/solc_parsing/declarations/custom_error.py
slither/solc_parsing/declarations/event_contract.py
slither/solc_parsing/declarations/event_top_level.py
slither/solc_parsing/declarations/function.py
slither/solc_parsing/declarations/modifier.py
slither/solc_parsing/declarations/structure_contract.py
slither/solc_parsing/declarations/structure_top_level.py
slither/solc_parsing/declarations/using_for_top_level.py
slither/solc_parsing/expressions/__init__.py
slither/solc_parsing/expressions/expression_parsing.py
slither/solc_parsing/expressions/find_variable.py
slither/solc_parsing/solidity_types/__init__.py
slither/solc_parsing/solidity_types/type_parsing.py
slither/solc_parsing/variables/__init__.py
slither/solc_parsing/variables/event_variable.py
slither/solc_parsing/variables/function_type_variable.py
slither/solc_parsing/variables/local_variable.py
slither/solc_parsing/variables/local_variable_init_from_tuple.py
slither/solc_parsing/variables/state_variable.py
slither/solc_parsing/variables/structure_variable.py
slither/solc_parsing/variables/top_level_variable.py
slither/solc_parsing/variables/variable_declaration.py
slither/solc_parsing/yul/__init__.py
slither/solc_parsing/yul/evm_functions.py
slither/solc_parsing/yul/parse_yul.py
slither/tools/__init__.py
slither/tools/demo/__init__.py
slither/tools/demo/__main__.py
slither/tools/doctor/__init__.py
slither/tools/doctor/__main__.py
slither/tools/doctor/utils.py
slither/tools/doctor/checks/__init__.py
slither/tools/doctor/checks/paths.py
slither/tools/doctor/checks/platform.py
slither/tools/doctor/checks/versions.py
slither/tools/documentation/__init__.py
slither/tools/documentation/__main__.py
slither/tools/erc_conformance/__init__.py
slither/tools/erc_conformance/__main__.py
slither/tools/erc_conformance/erc/__init__.py
slither/tools/erc_conformance/erc/erc1155.py
slither/tools/erc_conformance/erc/erc20.py
slither/tools/erc_conformance/erc/ercs.py
slither/tools/flattening/__init__.py
slither/tools/flattening/__main__.py
slither/tools/flattening/flattening.py
slither/tools/flattening/export/__init__.py
slither/tools/flattening/export/export.py
slither/tools/interface/__init__.py
slither/tools/interface/__main__.py
slither/tools/kspec_coverage/__init__.py
slither/tools/kspec_coverage/__main__.py
slither/tools/kspec_coverage/analysis.py
slither/tools/kspec_coverage/kspec_coverage.py
slither/tools/mutator/__init__.py
slither/tools/mutator/__main__.py
slither/tools/mutator/mutators/AOR.py
slither/tools/mutator/mutators/ASOR.py
slither/tools/mutator/mutators/BOR.py
slither/tools/mutator/mutators/CR.py
slither/tools/mutator/mutators/FHR.py
slither/tools/mutator/mutators/LIR.py
slither/tools/mutator/mutators/LOR.py
slither/tools/mutator/mutators/MIA.py
slither/tools/mutator/mutators/MVIE.py
slither/tools/mutator/mutators/MVIV.py
slither/tools/mutator/mutators/MWA.py
slither/tools/mutator/mutators/ROR.py
slither/tools/mutator/mutators/RR.py
slither/tools/mutator/mutators/SBR.py
slither/tools/mutator/mutators/UOR.py
slither/tools/mutator/mutators/__init__.py
slither/tools/mutator/mutators/abstract_mutator.py
slither/tools/mutator/mutators/all_mutators.py
slither/tools/mutator/utils/__init__.py
slither/tools/mutator/utils/command_line.py
slither/tools/mutator/utils/file_handling.py
slither/tools/mutator/utils/patch.py
slither/tools/mutator/utils/testing_generated_mutant.py
slither/tools/possible_paths/__init__.py
slither/tools/possible_paths/__main__.py
slither/tools/possible_paths/possible_paths.py
slither/tools/properties/__init__.py
slither/tools/properties/__main__.py
slither/tools/properties/utils.py
slither/tools/properties/addresses/__init__.py
slither/tools/properties/addresses/address.py
slither/tools/properties/platforms/__init__.py
slither/tools/properties/platforms/echidna.py
slither/tools/properties/platforms/truffle.py
slither/tools/properties/properties/__init__.py
slither/tools/properties/properties/erc20.py
slither/tools/properties/properties/properties.py
slither/tools/properties/properties/ercs/__init__.py
slither/tools/properties/properties/ercs/erc20/__init__.py
slither/tools/properties/properties/ercs/erc20/properties/__init__.py
slither/tools/properties/properties/ercs/erc20/properties/burn.py
slither/tools/properties/properties/ercs/erc20/properties/initialization.py
slither/tools/properties/properties/ercs/erc20/properties/mint.py
slither/tools/properties/properties/ercs/erc20/properties/mint_and_burn.py
slither/tools/properties/properties/ercs/erc20/properties/transfer.py
slither/tools/properties/properties/ercs/erc20/unit_tests/__init__.py
slither/tools/properties/properties/ercs/erc20/unit_tests/truffle.py
slither/tools/properties/solidity/__init__.py
slither/tools/properties/solidity/generate_properties.py
slither/tools/read_storage/__init__.py
slither/tools/read_storage/__main__.py
slither/tools/read_storage/read_storage.py
slither/tools/read_storage/utils/__init__.py
slither/tools/read_storage/utils/utils.py
slither/tools/similarity/__init__.py
slither/tools/similarity/__main__.py
slither/tools/similarity/cache.py
slither/tools/similarity/encode.py
slither/tools/similarity/info.py
slither/tools/similarity/model.py
slither/tools/similarity/plot.py
slither/tools/similarity/similarity.py
slither/tools/similarity/test.py
slither/tools/similarity/train.py
slither/tools/slither_format/__init__.py
slither/tools/slither_format/__main__.py
slither/tools/slither_format/slither_format.py
slither/tools/upgradeability/__init__.py
slither/tools/upgradeability/__main__.py
slither/tools/upgradeability/checks/__init__.py
slither/tools/upgradeability/checks/abstract_checks.py
slither/tools/upgradeability/checks/all_checks.py
slither/tools/upgradeability/checks/constant.py
slither/tools/upgradeability/checks/functions_ids.py
slither/tools/upgradeability/checks/initialization.py
slither/tools/upgradeability/checks/variable_initialization.py
slither/tools/upgradeability/checks/variables_order.py
slither/tools/upgradeability/utils/__init__.py
slither/tools/upgradeability/utils/command_line.py
slither/tools/utils/__init__.py
slither/utils/__init__.py
slither/utils/arithmetic.py
slither/utils/buggy_versions.py
slither/utils/ck.py
slither/utils/code_complexity.py
slither/utils/code_generation.py
slither/utils/codex.py
slither/utils/colors.py
slither/utils/command_line.py
slither/utils/comparable_enum.py
slither/utils/encoding.py
slither/utils/erc.py
slither/utils/expression_manipulations.py
slither/utils/function.py
slither/utils/halstead.py
slither/utils/inheritance_analysis.py
slither/utils/integer_conversion.py
slither/utils/loc.py
slither/utils/martin.py
slither/utils/myprettytable.py
slither/utils/output.py
slither/utils/output_capture.py
slither/utils/oz_hashes.py
slither/utils/sarif.py
slither/utils/source_mapping.py
slither/utils/standard_libraries.py
slither/utils/tests_pattern.py
slither/utils/type.py
slither/utils/type_helpers.py
slither/utils/upgradeability.py
slither/utils/using_for.py
slither/utils/utils.py
slither/visitors/__init__.py
slither/visitors/expression/__init__.py
slither/visitors/expression/constants_folding.py
slither/visitors/expression/export_values.py
slither/visitors/expression/expression.py
slither/visitors/expression/expression_printer.py
slither/visitors/expression/find_calls.py
slither/visitors/expression/has_conditional.py
slither/visitors/expression/read_var.py
slither/visitors/expression/write_var.py
slither/visitors/slithir/__init__.py
slither/visitors/slithir/expression_to_slithir.py
slither/vyper_parsing/__init__.py
slither/vyper_parsing/type_parsing.py
slither/vyper_parsing/vyper_compilation_unit.py
slither/vyper_parsing/ast/__init__.py
slither/vyper_parsing/ast/ast.py
slither/vyper_parsing/ast/types.py
slither/vyper_parsing/cfg/__init__.py
slither/vyper_parsing/cfg/node.py
slither/vyper_parsing/declarations/__init__.py
slither/vyper_parsing/declarations/contract.py
slither/vyper_parsing/declarations/event.py
slither/vyper_parsing/declarations/function.py
slither/vyper_parsing/declarations/struct.py
slither/vyper_parsing/expressions/__init__.py
slither/vyper_parsing/expressions/expression_parsing.py
slither/vyper_parsing/expressions/find_variable.py
slither/vyper_parsing/variables/__init__.py
slither/vyper_parsing/variables/event_variable.py
slither/vyper_parsing/variables/local_variable.py
slither/vyper_parsing/variables/state_variable.py
slither/vyper_parsing/variables/structure_variable.py
slither_analyzer.egg-info/PKG-INFO
slither_analyzer.egg-info/SOURCES.txt
slither_analyzer.egg-info/dependency_links.txt
slither_analyzer.egg-info/entry_points.txt
slither_analyzer.egg-info/requires.txt
slither_analyzer.egg-info/top_level.txt
tests/__init__.py
tests/conftest.py
tests/utils.py
tests/e2e/__init__.py
tests/e2e/compilation/__init__.py
tests/e2e/compilation/test_diagnostic.py
tests/e2e/compilation/test_resolution.py
tests/e2e/compilation/test_source_unit.py
tests/e2e/detectors/__init__.py
tests/e2e/detectors/test_detectors.py
tests/e2e/printers/__init__.py
tests/e2e/printers/test_printers.py
tests/e2e/solc_parsing/__init__.py
tests/e2e/solc_parsing/test_ast_parsing.py
tests/e2e/vyper_parsing/__init__.py
tests/e2e/vyper_parsing/test_ast_parsing.py
tests/tools/__init__.py
tests/tools/mutator/__init__.py
tests/tools/mutator/test_mutator.py
tests/tools/read-storage/__init__.py
tests/tools/read-storage/conftest.py
tests/tools/read-storage/test_read_storage.py
tests/unit/__init__.py
tests/unit/core/__init__.py
tests/unit/core/test_arithmetic.py
tests/unit/core/test_code_comments.py
tests/unit/core/test_constant_folding.py
tests/unit/core/test_contract_declaration.py
tests/unit/core/test_fallback_receive.py
tests/unit/core/test_function_declaration.py
tests/unit/core/test_inheritance.py
tests/unit/core/test_name_resolution.py
tests/unit/core/test_scope_with_renaming.py
tests/unit/core/test_source_mapping.py
tests/unit/core/test_storage_layout.py
tests/unit/core/test_using_for.py
tests/unit/core/test_virtual_overrides.py
tests/unit/slithir/__init__.py
tests/unit/slithir/test_argument_reorder.py
tests/unit/slithir/test_constantfolding.py
tests/unit/slithir/test_enum.py
tests/unit/slithir/test_implicit_returns.py
tests/unit/slithir/test_operation_reads.py
tests/unit/slithir/test_selector.py
tests/unit/slithir/test_ssa_generation.py
tests/unit/slithir/test_storage_pointer.py
tests/unit/slithir/test_ternary_expressions.py
tests/unit/slithir/test_top_level_using_for.py
tests/unit/slithir/test_tuple_assign.py
tests/unit/slithir/test_yul_parser_assembly_slot.py
tests/unit/slithir/vyper/__init__.py
tests/unit/slithir/vyper/test_ir_generation.py
tests/unit/utils/__init__.py
tests/unit/utils/test_code_generation.py
tests/unit/utils/test_functions_ids.py
tests/unit/utils/test_type_helpers.py
tests/unit/utils/test_upgradeability_util.py