forked from ethereum/solidity
-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
English documentation updates up to v0.8.28-77-g879d8e69f (2024-10-26) #454
Open
soldocsbot
wants to merge
970
commits into
develop
Choose a base branch
from
sync-v0.8.28-77-g879d8e69f
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Yul: Remove boolType and defaultType from dialect
Extend title underline
This commit introduces the interface class without actually using it. The actual switch will be done later, after all things are set up.
SMTChecker: Introduce first draft of Z3CHCSmtlib2Interface
Docs: Fix showProvedSafe flag and JSON key name
Co-authored-by: Daniel Kirchner <daniel@ekpyron.org>
SMTChecker: Introduce helper struct for query result
Generate Yul SSA CFG
[experimental] Export yul cfg to json
…ception-message Propagate `AssemblyException` message
Bump min Boost dependency to 1.67
…erimental-feature Hide undocumented yul export cfg option
Create opRetro.json
…image Introduce ubuntu2404 clang docker image
Relax the definition of memory safety in the documentation.
Instead of interacting with Z3 via its API, we switch to the interaction using our SMT-LIB interface. An exception is the emscripten build, where we keep including Z3. This is for users' convenience.
We introduce new tyoe of check to validate our assumptions when interacting with the solvers. If our assumption is violated, we can gracefully handle that and not crash the whole compiler.
eof: Add `auxdataloadn` to reserved identifiers. Move test to `eof` dir
SMTChecker: Use Z3 through the SMT-LIB interface
Mark prague as experimental in a few places where it was not so
Remove remaining artifacts of dynamically loading Z3.
…ant_condition_for_loop SSACFGBuilder: Descent into constant condition for loops' conditions
…-interface Add `ControlFlowSideEffects` parameter to `createFunction` in EVMDialect
- Comparing exit code first looks confusing in CI, because we see that there is an error but not what it is. - Similarly, we wnat to see the errors before we see the difference in output (which is usually just the stdout becoming empty)
…nting the error - No need to let the exception escape and print the whole stack trace. This is an expected situation.
…-comparison-order More informative output for failed CLI tests in CI
…t-fix eof: Change convention for printing immediate arguments in assembly
Yulopti: Fix error during parsing stage
# Conflicts: # .circleci/README.md # .circleci/build_win.ps1 # .circleci/compare_bytecode_reports.sh # .circleci/config.yml # .circleci/osx_install_dependencies.sh # .circleci/parallel_bytecode_report.sh # .circleci/parallel_cli_tests.py # .circleci/soltest_all.sh # .dockerignore # .github/workflows/buildpack-deps.yml # .gitignore # CODING_STYLE.md # Changelog.md # README.md # ReleaseChecklist.md # cmake/EthCompilerSettings.cmake # cmake/EthDependencies.cmake # cmake/FindZ3.cmake # cmake/fmtlib.cmake # cmake/range-v3.cmake # cmake/templates/license.h.in # cmake/toolchains/libfuzzer.cmake # cmake/toolchains/ossfuzz.cmake # docs/080-breaking-changes.rst # docs/abi-spec.rst # docs/assembly.rst # docs/bugs.rst # docs/cheatsheet.rst # docs/contracts/constant-state-variables.rst # docs/contracts/errors.rst # docs/contracts/function-modifiers.rst # docs/contracts/functions.rst # docs/contracts/inheritance.rst # docs/contracts/libraries.rst # docs/contributing.rst # docs/control-structures.rst # docs/examples/micropayment.rst # docs/index.rst # docs/installing-solidity.rst # docs/internals/layout_in_storage.rst # docs/internals/optimizer.rst # docs/introduction-to-smart-contracts.rst # docs/language-influences.rst # docs/metadata.rst # docs/natspec-format.rst # docs/path-resolution.rst # docs/resources.rst # docs/smtchecker.rst # docs/structure-of-a-contract.rst # docs/style-guide.rst # docs/types/conversion.rst # docs/types/reference-types.rst # docs/types/value-types.rst # docs/units-and-global-variables.rst # docs/using-the-compiler.rst # docs/yul.rst # libevmasm/AbstractAssemblyStack.h # libevmasm/Assembly.cpp # libevmasm/Assembly.h # libevmasm/AssemblyItem.cpp # libevmasm/AssemblyItem.h # libevmasm/CommonSubexpressionEliminator.cpp # libevmasm/CommonSubexpressionEliminator.h # libevmasm/ConstantOptimiser.cpp # libevmasm/ConstantOptimiser.h # libevmasm/ControlFlowGraph.cpp # libevmasm/EVMAssemblyStack.cpp # libevmasm/EVMAssemblyStack.h # libevmasm/ExpressionClasses.cpp # libevmasm/ExpressionClasses.h # libevmasm/GasMeter.cpp # libevmasm/GasMeter.h # libevmasm/Inliner.cpp # libevmasm/Instruction.cpp # libevmasm/Instruction.h # libevmasm/KnownState.cpp # libevmasm/KnownState.h # libevmasm/LinkerObject.h # libevmasm/PeepholeOptimiser.cpp # libevmasm/PeepholeOptimiser.h # libevmasm/SemanticInformation.cpp # libevmasm/SemanticInformation.h # libevmasm/SimplificationRule.h # libevmasm/SimplificationRules.cpp # libevmasm/SimplificationRules.h # liblangutil/CMakeLists.txt # liblangutil/DebugInfoSelection.cpp # liblangutil/DebugInfoSelection.h # liblangutil/EVMVersion.cpp # liblangutil/EVMVersion.h # liblangutil/ErrorReporter.cpp # liblangutil/ErrorReporter.h # liblangutil/Exceptions.h # liblangutil/Scanner.cpp # liblangutil/Scanner.h # liblangutil/SemVerHandler.cpp # liblangutil/Token.h # libsmtutil/CHCSmtLib2Interface.cpp # libsmtutil/CHCSmtLib2Interface.h # libsmtutil/CHCSolverInterface.h # libsmtutil/CMakeLists.txt # libsmtutil/Exceptions.h # libsmtutil/SMTLib2Interface.cpp # libsmtutil/SMTLib2Interface.h # libsmtutil/SMTPortfolio.cpp # libsmtutil/SMTPortfolio.h # libsmtutil/SolverInterface.h # libsolc/libsolc.cpp # libsolc/libsolc.h # libsolidity/CMakeLists.txt # libsolidity/analysis/ControlFlowBuilder.cpp # libsolidity/analysis/DeclarationTypeChecker.cpp # libsolidity/analysis/GlobalContext.cpp # libsolidity/analysis/GlobalContext.h # libsolidity/analysis/NameAndTypeResolver.cpp # libsolidity/analysis/NameAndTypeResolver.h # libsolidity/analysis/PostTypeChecker.cpp # libsolidity/analysis/PostTypeChecker.h # libsolidity/analysis/ReferencesResolver.cpp # libsolidity/analysis/ReferencesResolver.h # libsolidity/analysis/StaticAnalyzer.cpp # libsolidity/analysis/StaticAnalyzer.h # libsolidity/analysis/SyntaxChecker.cpp # libsolidity/analysis/SyntaxChecker.h # libsolidity/analysis/TypeChecker.cpp # libsolidity/analysis/TypeChecker.h # libsolidity/analysis/ViewPureChecker.cpp # libsolidity/ast/AST.cpp # libsolidity/ast/AST.h # libsolidity/ast/ASTAnnotations.h # libsolidity/ast/ASTForward.h # libsolidity/ast/ASTJsonExporter.cpp # libsolidity/ast/ASTJsonExporter.h # libsolidity/ast/ASTJsonImporter.cpp # libsolidity/ast/ASTJsonImporter.h # libsolidity/ast/ASTUtils.cpp # libsolidity/ast/ASTUtils.h # libsolidity/ast/ASTVisitor.h # libsolidity/ast/AST_accept.h # libsolidity/ast/TypeProvider.cpp # libsolidity/ast/TypeProvider.h # libsolidity/ast/Types.cpp # libsolidity/ast/Types.h # libsolidity/codegen/ABIFunctions.cpp # libsolidity/codegen/ArrayUtils.cpp # libsolidity/codegen/ArrayUtils.h # libsolidity/codegen/Compiler.cpp # libsolidity/codegen/CompilerContext.cpp # libsolidity/codegen/CompilerContext.h # libsolidity/codegen/CompilerUtils.cpp # libsolidity/codegen/ContractCompiler.cpp # libsolidity/codegen/ExpressionCompiler.cpp # libsolidity/codegen/LValue.cpp # libsolidity/codegen/LValue.h # libsolidity/codegen/YulUtilFunctions.cpp # libsolidity/codegen/YulUtilFunctions.h # libsolidity/codegen/ir/Common.h # libsolidity/codegen/ir/IRGenerationContext.h # libsolidity/codegen/ir/IRGenerator.cpp # libsolidity/codegen/ir/IRGenerator.h # libsolidity/codegen/ir/IRGeneratorForStatements.cpp # libsolidity/codegen/ir/IRGeneratorForStatements.h # libsolidity/codegen/ir/IRLValue.h # libsolidity/experimental/analysis/Analysis.cpp # libsolidity/experimental/analysis/Analysis.h # libsolidity/formal/BMC.cpp # libsolidity/formal/BMC.h # libsolidity/formal/CHC.cpp # libsolidity/formal/CHC.h # libsolidity/formal/ExpressionFormatter.cpp # libsolidity/formal/ExpressionFormatter.h # libsolidity/formal/ModelChecker.cpp # libsolidity/formal/ModelChecker.h # libsolidity/formal/ModelCheckerSettings.h # libsolidity/formal/Predicate.cpp # libsolidity/formal/Predicate.h # libsolidity/formal/PredicateInstance.cpp # libsolidity/formal/PredicateInstance.h # libsolidity/formal/PredicateSort.cpp # libsolidity/formal/PredicateSort.h # libsolidity/formal/SMTEncoder.cpp # libsolidity/formal/SMTEncoder.h # libsolidity/formal/SymbolicState.cpp # libsolidity/formal/SymbolicState.h # libsolidity/formal/SymbolicTypes.cpp # libsolidity/formal/SymbolicVariables.cpp # libsolidity/formal/SymbolicVariables.h # libsolidity/interface/ABI.cpp # libsolidity/interface/ABI.h # libsolidity/interface/CompilerStack.cpp # libsolidity/interface/CompilerStack.h # libsolidity/interface/FileReader.cpp # libsolidity/interface/Natspec.cpp # libsolidity/interface/Natspec.h # libsolidity/interface/OptimiserSettings.h # libsolidity/interface/SMTSolverCommand.cpp # libsolidity/interface/SMTSolverCommand.h # libsolidity/interface/StandardCompiler.cpp # libsolidity/interface/StandardCompiler.h # libsolidity/interface/StorageLayout.cpp # libsolidity/interface/StorageLayout.h # libsolidity/interface/UniversalCallback.h # libsolidity/lsp/DocumentHoverHandler.cpp # libsolidity/lsp/DocumentHoverHandler.h # libsolidity/lsp/FileRepository.cpp # libsolidity/lsp/GotoDefinition.cpp # libsolidity/lsp/GotoDefinition.h # libsolidity/lsp/HandlerBase.cpp # libsolidity/lsp/HandlerBase.h # libsolidity/lsp/LanguageServer.cpp # libsolidity/lsp/LanguageServer.h # libsolidity/lsp/RenameSymbol.cpp # libsolidity/lsp/RenameSymbol.h # libsolidity/lsp/SemanticTokensBuilder.cpp # libsolidity/lsp/SemanticTokensBuilder.h # libsolidity/lsp/Transport.cpp # libsolidity/lsp/Transport.h # libsolidity/lsp/Utils.cpp # libsolidity/lsp/Utils.h # libsolidity/parsing/Parser.cpp # libsolidity/parsing/Parser.h # libsolutil/Assertions.h # libsolutil/CMakeLists.txt # libsolutil/CommonData.cpp # libsolutil/CommonData.h # libsolutil/Exceptions.cpp # libsolutil/Exceptions.h # libsolutil/FixedHash.h # libsolutil/JSON.cpp # libsolutil/JSON.h # libsolutil/Keccak256.cpp # libsolutil/Numeric.h # libsolutil/Result.h # libsolutil/cxx20.h # libstdlib/CMakeLists.txt # libstdlib/src/stub.sol # libyul/AST.h # libyul/ASTForward.h # libyul/AsmAnalysis.cpp # libyul/AsmAnalysis.h # libyul/AsmJsonConverter.cpp # libyul/AsmJsonConverter.h # libyul/AsmJsonImporter.cpp # libyul/AsmJsonImporter.h # libyul/AsmParser.cpp # libyul/AsmParser.h # libyul/AsmPrinter.cpp # libyul/AsmPrinter.h # libyul/Builtins.h # libyul/CMakeLists.txt # libyul/CompilabilityChecker.cpp # libyul/CompilabilityChecker.h # libyul/ControlFlowSideEffects.h # libyul/ControlFlowSideEffectsCollector.cpp # libyul/ControlFlowSideEffectsCollector.h # libyul/Dialect.cpp # libyul/Dialect.h # libyul/Exceptions.h # libyul/FunctionReferenceResolver.h # libyul/Object.cpp # libyul/Object.h # libyul/ObjectParser.cpp # libyul/ObjectParser.h # libyul/Scope.cpp # libyul/Scope.h # libyul/ScopeFiller.cpp # libyul/ScopeFiller.h # libyul/SideEffects.h # libyul/Utilities.cpp # libyul/Utilities.h # libyul/YulStack.cpp # libyul/YulStack.h # libyul/YulString.h # libyul/backends/evm/AbstractAssembly.h # libyul/backends/evm/AsmCodeGen.cpp # libyul/backends/evm/AsmCodeGen.h # libyul/backends/evm/ConstantOptimiser.cpp # libyul/backends/evm/ConstantOptimiser.h # libyul/backends/evm/ControlFlowGraph.h # libyul/backends/evm/ControlFlowGraphBuilder.cpp # libyul/backends/evm/ControlFlowGraphBuilder.h # libyul/backends/evm/EVMCodeTransform.cpp # libyul/backends/evm/EVMCodeTransform.h # libyul/backends/evm/EVMDialect.cpp # libyul/backends/evm/EVMDialect.h # libyul/backends/evm/EVMMetrics.cpp # libyul/backends/evm/EVMMetrics.h # libyul/backends/evm/EVMObjectCompiler.cpp # libyul/backends/evm/EVMObjectCompiler.h # libyul/backends/evm/EthAssemblyAdapter.cpp # libyul/backends/evm/EthAssemblyAdapter.h # libyul/backends/evm/NoOutputAssembly.cpp # libyul/backends/evm/NoOutputAssembly.h # libyul/backends/evm/OptimizedEVMCodeTransform.cpp # libyul/backends/evm/OptimizedEVMCodeTransform.h # libyul/backends/evm/StackLayoutGenerator.cpp # libyul/backends/evm/StackLayoutGenerator.h # libyul/backends/evm/VariableReferenceCounter.cpp # libyul/backends/evm/VariableReferenceCounter.h # libyul/optimiser/ASTCopier.cpp # libyul/optimiser/ASTCopier.h # libyul/optimiser/ASTWalker.h # libyul/optimiser/BlockHasher.cpp # libyul/optimiser/BlockHasher.h # libyul/optimiser/CallGraphGenerator.cpp # libyul/optimiser/CallGraphGenerator.h # libyul/optimiser/CircularReferencesPruner.cpp # libyul/optimiser/CircularReferencesPruner.h # libyul/optimiser/CommonSubexpressionEliminator.cpp # libyul/optimiser/CommonSubexpressionEliminator.h # libyul/optimiser/ConditionalSimplifier.cpp # libyul/optimiser/ConditionalSimplifier.h # libyul/optimiser/ConditionalUnsimplifier.cpp # libyul/optimiser/ConditionalUnsimplifier.h # libyul/optimiser/ControlFlowSimplifier.cpp # libyul/optimiser/ControlFlowSimplifier.h # libyul/optimiser/DataFlowAnalyzer.cpp # libyul/optimiser/DataFlowAnalyzer.h # libyul/optimiser/DeadCodeEliminator.h # libyul/optimiser/Disambiguator.cpp # libyul/optimiser/Disambiguator.h # libyul/optimiser/EqualStoreEliminator.cpp # libyul/optimiser/EqualStoreEliminator.h # libyul/optimiser/EquivalentFunctionCombiner.h # libyul/optimiser/EquivalentFunctionDetector.h # libyul/optimiser/ExpressionInliner.cpp # libyul/optimiser/ExpressionInliner.h # libyul/optimiser/ExpressionJoiner.h # libyul/optimiser/ExpressionSimplifier.cpp # libyul/optimiser/ExpressionSplitter.cpp # libyul/optimiser/ExpressionSplitter.h # libyul/optimiser/ForLoopConditionIntoBody.cpp # libyul/optimiser/ForLoopConditionOutOfBody.cpp # libyul/optimiser/FullInliner.cpp # libyul/optimiser/FullInliner.h # libyul/optimiser/FunctionCallFinder.cpp # libyul/optimiser/FunctionCallFinder.h # libyul/optimiser/FunctionSpecializer.cpp # libyul/optimiser/FunctionSpecializer.h # libyul/optimiser/InlinableExpressionFunctionFinder.cpp # libyul/optimiser/InlinableExpressionFunctionFinder.h # libyul/optimiser/KnowledgeBase.cpp # libyul/optimiser/KnowledgeBase.h # libyul/optimiser/LoadResolver.cpp # libyul/optimiser/LoadResolver.h # libyul/optimiser/LoopInvariantCodeMotion.cpp # libyul/optimiser/LoopInvariantCodeMotion.h # libyul/optimiser/Metrics.cpp # libyul/optimiser/Metrics.h # libyul/optimiser/NameCollector.cpp # libyul/optimiser/NameCollector.h # libyul/optimiser/NameDispenser.cpp # libyul/optimiser/NameDispenser.h # libyul/optimiser/NameDisplacer.cpp # libyul/optimiser/NameDisplacer.h # libyul/optimiser/NameSimplifier.cpp # libyul/optimiser/NameSimplifier.h # libyul/optimiser/OptimiserStep.h # libyul/optimiser/OptimizerUtilities.cpp # libyul/optimiser/OptimizerUtilities.h # libyul/optimiser/Rematerialiser.cpp # libyul/optimiser/Rematerialiser.h # libyul/optimiser/SSAReverser.h # libyul/optimiser/SSATransform.cpp # libyul/optimiser/SSAValueTracker.cpp # libyul/optimiser/SSAValueTracker.h # libyul/optimiser/Semantics.cpp # libyul/optimiser/Semantics.h # libyul/optimiser/SimplificationRules.cpp # libyul/optimiser/SimplificationRules.h # libyul/optimiser/StackCompressor.cpp # libyul/optimiser/StackCompressor.h # libyul/optimiser/StackLimitEvader.cpp # libyul/optimiser/StackLimitEvader.h # libyul/optimiser/StackToMemoryMover.cpp # libyul/optimiser/StackToMemoryMover.h # libyul/optimiser/StructuralSimplifier.cpp # libyul/optimiser/Substitution.cpp # libyul/optimiser/Substitution.h # libyul/optimiser/Suite.cpp # libyul/optimiser/Suite.h # libyul/optimiser/SyntacticalEquality.cpp # libyul/optimiser/SyntacticalEquality.h # libyul/optimiser/UnusedAssignEliminator.cpp # libyul/optimiser/UnusedAssignEliminator.h # libyul/optimiser/UnusedFunctionParameterPruner.cpp # libyul/optimiser/UnusedFunctionsCommon.cpp # libyul/optimiser/UnusedFunctionsCommon.h # libyul/optimiser/UnusedPruner.cpp # libyul/optimiser/UnusedPruner.h # libyul/optimiser/UnusedStoreBase.h # libyul/optimiser/UnusedStoreEliminator.cpp # libyul/optimiser/UnusedStoreEliminator.h # libyul/optimiser/VarDeclInitializer.cpp # libyul/optimiser/VarNameCleaner.cpp # libyul/optimiser/VarNameCleaner.h # scripts/ASTImportTest.sh # scripts/build_emscripten.sh # scripts/bytecodecompare/prepare_report.js # scripts/bytecodecompare/prepare_report.py # scripts/check_style.sh # scripts/chk_shellscripts/chk_shellscripts.sh # scripts/ci/build.sh # scripts/ci/buildpack-deps_test_ubuntu2404.clang.sh # scripts/ci/buildpack-deps_test_ubuntu2404.sh # scripts/common.sh # scripts/common/cmdline_helpers.py # scripts/common/rest_api_helpers.py # scripts/common_cmdline.sh # scripts/create_source_tarball.sh # scripts/deps-ppa/static_z3.sh # scripts/docker/buildpack-deps/Dockerfile.emscripten # scripts/docker/buildpack-deps/Dockerfile.ubuntu.clang.ossfuzz # scripts/docker/buildpack-deps/Dockerfile.ubuntu2004 # scripts/docker_deploy_manual.sh # scripts/docs_version_pragma_check.sh # scripts/error_codes.py # scripts/externalTests/common.sh # scripts/externalTests/download_benchmarks.py # scripts/externalTests/runners/base.py # scripts/externalTests/runners/foundry.py # scripts/externalTests/test_helpers.py # scripts/gas_diff_stats.py # scripts/install_evmone.ps1 # scripts/install_obsolete_jsoncpp_1_7_4.sh # scripts/release_ppa.sh # scripts/solc-bin/bytecode_reports_for_modified_binaries.sh # scripts/test_antlr_grammar.sh # scripts/tests.sh # solc/CommandLineInterface.cpp # solc/CommandLineInterface.h # solc/CommandLineParser.cpp # solc/CommandLineParser.h # solc/main.cpp # test/CMakeLists.txt # test/Common.cpp # test/Common.h # test/CommonSyntaxTest.cpp # test/EVMHost.cpp # test/EVMHost.h # test/ExecutionFramework.cpp # test/ExecutionFramework.h # test/FilesystemUtils.cpp # test/InteractiveTests.h # test/Metadata.cpp # test/Metadata.h # test/TestCase.cpp # test/TestCase.h # test/TestCaseReader.cpp # test/cmdlineTests.sh # test/cmdlineTests/asm_json/output # test/cmdlineTests/asm_json_import_sourcelist_with_null_elements/exit # test/cmdlineTests/asm_json_no_pretty_print/output # test/cmdlineTests/ast_compact_json_with_base_path/output # test/cmdlineTests/ast_ir/output # test/cmdlineTests/combined_json_abi/output # test/cmdlineTests/combined_json_generated_sources/output # test/cmdlineTests/combined_json_stop_after_parsing/output # test/cmdlineTests/combined_json_with_base_path/output # test/cmdlineTests/combined_json_with_devdoc/output # test/cmdlineTests/combined_json_with_userdoc/output # test/cmdlineTests/debug_info_in_yul_and_evm_asm_print_all/output # test/cmdlineTests/debug_info_in_yul_and_evm_asm_print_location_only/output # test/cmdlineTests/debug_info_in_yul_and_evm_asm_print_none/output # test/cmdlineTests/debug_info_in_yul_snippet_escaping/output # test/cmdlineTests/dup_opt_peephole/output # test/cmdlineTests/events_in_abi/output # test/cmdlineTests/function_debug_info/output # test/cmdlineTests/function_debug_info_via_yul/output # test/cmdlineTests/import_asm_json_all_valid_flags/args # test/cmdlineTests/import_asm_json_all_valid_flags/output # test/cmdlineTests/import_asm_json_all_valid_flags/stdin # test/cmdlineTests/import_asm_json_difficulty_prevrandao/args # test/cmdlineTests/import_asm_json_difficulty_prevrandao/output # test/cmdlineTests/import_asm_json_difficulty_prevrandao/stdin # test/cmdlineTests/import_asm_json_hex_subassembly_indices/args # test/cmdlineTests/import_asm_json_hex_subassembly_indices/output # test/cmdlineTests/import_asm_json_hex_subassembly_indices/stdin # test/cmdlineTests/import_asm_json_invalid_data_not_hex/args # test/cmdlineTests/import_asm_json_invalid_data_not_hex/err # test/cmdlineTests/import_asm_json_invalid_data_not_hex/exit # test/cmdlineTests/import_asm_json_invalid_data_not_hex/stdin # test/cmdlineTests/import_asm_json_invalid_data_not_object/args # test/cmdlineTests/import_asm_json_invalid_data_not_object/err # test/cmdlineTests/import_asm_json_invalid_data_not_object/stdin # test/cmdlineTests/import_asm_json_invalid_jumptype_instruction/args # test/cmdlineTests/import_asm_json_invalid_jumptype_instruction/err # test/cmdlineTests/import_asm_json_invalid_jumptype_instruction/exit # test/cmdlineTests/import_asm_json_invalid_jumptype_instruction/stdin # test/cmdlineTests/import_asm_json_invalid_value/args # test/cmdlineTests/import_asm_json_invalid_value/err # test/cmdlineTests/import_asm_json_invalid_value/stdin # test/cmdlineTests/import_asm_json_missing_subobject_indices/args # test/cmdlineTests/import_asm_json_missing_subobject_indices/err # test/cmdlineTests/import_asm_json_missing_subobject_indices/exit # test/cmdlineTests/import_asm_json_missing_subobject_indices/stdin # test/cmdlineTests/import_asm_json_no_value/args # test/cmdlineTests/import_asm_json_no_value/err # test/cmdlineTests/import_asm_json_no_value/exit # test/cmdlineTests/import_asm_json_no_value/stdin # test/cmdlineTests/import_asm_json_non_unique_sources/args # test/cmdlineTests/import_asm_json_non_unique_sources/err # test/cmdlineTests/import_asm_json_non_unique_sources/exit # test/cmdlineTests/import_asm_json_non_unique_sources/stdin # test/cmdlineTests/import_asm_json_optimize_not_supported/args # test/cmdlineTests/import_asm_json_optimize_not_supported/err # test/cmdlineTests/import_asm_json_optimize_not_supported/exit # test/cmdlineTests/import_asm_json_optimize_not_supported/stdin # test/cmdlineTests/import_asm_json_out_of_range_data_index/args # test/cmdlineTests/import_asm_json_out_of_range_data_index/err # test/cmdlineTests/import_asm_json_out_of_range_data_index/exit # test/cmdlineTests/import_asm_json_out_of_range_data_index/stdin # test/cmdlineTests/import_asm_json_random_order_data_index/args # test/cmdlineTests/import_asm_json_random_order_data_index/output # test/cmdlineTests/import_asm_json_random_order_data_index/stdin # test/cmdlineTests/import_asm_json_unrecognized_field/args # test/cmdlineTests/import_asm_json_unrecognized_field/err # test/cmdlineTests/import_asm_json_unrecognized_field/stdin # test/cmdlineTests/import_asm_json_untagged_jumpdest/args # test/cmdlineTests/import_asm_json_untagged_jumpdest/err # test/cmdlineTests/import_asm_json_untagged_jumpdest/exit # test/cmdlineTests/import_asm_json_untagged_jumpdest/stdin # test/cmdlineTests/import_asm_json_verbatim/args # test/cmdlineTests/import_asm_json_verbatim/output # test/cmdlineTests/import_asm_json_verbatim/stdin # test/cmdlineTests/import_asm_json_yul_more_subobjects/args # test/cmdlineTests/import_asm_json_yul_more_subobjects/output # test/cmdlineTests/import_asm_json_yul_more_subobjects/stdin # test/cmdlineTests/import_asm_json_yul_subobjects/args # test/cmdlineTests/import_asm_json_yul_subobjects/output # test/cmdlineTests/import_asm_json_yul_subobjects/stdin # test/cmdlineTests/inline_assembly_function_name_clash/output # test/cmdlineTests/linking_standard_solidity/output.json # test/cmdlineTests/linking_standard_solidity_quote_in_file_name/output.json # test/cmdlineTests/linking_standard_solidity_unresolved_references/output.json # test/cmdlineTests/linking_standard_yul/output.json # test/cmdlineTests/linking_standard_yul_quote_in_file_name/output.json # test/cmdlineTests/linking_standard_yul_unresolved_references/output.json # test/cmdlineTests/linking_strict_assembly/output # test/cmdlineTests/linking_strict_assembly_same_library_name_different_files/output # test/cmdlineTests/linking_strict_assembly_same_library_name_different_files_in_link_references/output # test/cmdlineTests/linking_strict_assembly_unresolved_references/output # test/cmdlineTests/metadata/output # test/cmdlineTests/model_checker_contracts_all/err # test/cmdlineTests/model_checker_contracts_all/input.sol # test/cmdlineTests/model_checker_divModSlacks_false_all/err # test/cmdlineTests/model_checker_divModSlacks_false_chc/err # test/cmdlineTests/model_checker_invariants_all/err # test/cmdlineTests/model_checker_invariants_all/input.sol # test/cmdlineTests/model_checker_invariants_contract/err # test/cmdlineTests/model_checker_invariants_contract/input.sol # test/cmdlineTests/model_checker_invariants_contract_reentrancy/err # test/cmdlineTests/model_checker_invariants_contract_reentrancy/input.sol # test/cmdlineTests/model_checker_invariants_reentrancy/err # test/cmdlineTests/model_checker_invariants_reentrancy/input.sol # test/cmdlineTests/model_checker_print_query_all/err # test/cmdlineTests/model_checker_print_query_bmc/err # test/cmdlineTests/model_checker_print_query_chc/err # test/cmdlineTests/model_checker_solvers_smtlib2/err # test/cmdlineTests/model_checker_targets_all_all_engines/err # test/cmdlineTests/model_checker_targets_all_chc/err # test/cmdlineTests/model_checker_targets_default_all_engines/err # test/cmdlineTests/model_checker_targets_default_chc/err # test/cmdlineTests/name_simplifier/output # test/cmdlineTests/no_contract_combined_json/output # test/cmdlineTests/object_compiler/output # test/cmdlineTests/optimize_full_storage_write/output # test/cmdlineTests/optimizer_BlockDeDuplicator/output # test/cmdlineTests/optimizer_array_sload/output # test/cmdlineTests/optimizer_inliner_add/output # test/cmdlineTests/optimizer_inliner_call_from_constructor/output # test/cmdlineTests/optimizer_inliner_dynamic_reference/output # test/cmdlineTests/optimizer_inliner_dynamic_reference_constructor/output # test/cmdlineTests/optimizer_inliner_inc/output # test/cmdlineTests/optimizer_inliner_multireturn/output # test/cmdlineTests/optimizer_user_yul/output # test/cmdlineTests/pretty_json_indent_only/output.json # test/cmdlineTests/pretty_json_standard/output.json # test/cmdlineTests/pretty_json_standard_indent/output.json # test/cmdlineTests/require_overload/err # test/cmdlineTests/standard_debug_info_in_evm_asm_via_ir_location/input.json # test/cmdlineTests/standard_debug_info_in_evm_asm_via_ir_location/output.json # test/cmdlineTests/standard_debug_info_in_yul_and_evm_asm_print_all/output.json # test/cmdlineTests/standard_debug_info_in_yul_and_evm_asm_print_location_only/output.json # test/cmdlineTests/standard_debug_info_in_yul_and_evm_asm_print_none/output.json # test/cmdlineTests/standard_debug_info_in_yul_and_evm_asm_print_snippet_only/output.json # test/cmdlineTests/standard_debug_info_in_yul_location/input.json # test/cmdlineTests/standard_debug_info_in_yul_location/output.json # test/cmdlineTests/standard_default_success/output.json # test/cmdlineTests/standard_empty_file_name/output.json # test/cmdlineTests/standard_evm_version_byzantium/output.json # test/cmdlineTests/standard_evm_version_constantinople/output.json # test/cmdlineTests/standard_function_debug_info/output.json # test/cmdlineTests/standard_generatedSources/output.json # test/cmdlineTests/standard_immutable_references/output.json # test/cmdlineTests/standard_import_ast/output.json # test/cmdlineTests/standard_import_ast_select_bytecode/output.json # test/cmdlineTests/standard_irOptimized_ast_requested/output.json # test/cmdlineTests/standard_irOptimized_requested/output.json # test/cmdlineTests/standard_ir_ast_requested/output.json # test/cmdlineTests/standard_ir_requested/output.json # test/cmdlineTests/standard_metadata/output.json # test/cmdlineTests/standard_method_identifiers_requested/output.json # test/cmdlineTests/standard_method_identifiers_requested_empty/output.json # test/cmdlineTests/standard_missing_key_useLiteralContent/output.json # test/cmdlineTests/standard_model_checker_bmc_loop_iterations/output.json # test/cmdlineTests/standard_model_checker_bmc_loop_iterations_invalid_arg/output.json # test/cmdlineTests/standard_model_checker_contracts_all/output.json # test/cmdlineTests/standard_model_checker_contracts_all_explicit/output.json # test/cmdlineTests/standard_model_checker_contracts_empty_array/output.json # test/cmdlineTests/standard_model_checker_contracts_empty_contract/output.json # test/cmdlineTests/standard_model_checker_contracts_empty_source/output.json # test/cmdlineTests/standard_model_checker_contracts_inexistent_contract/output.json # test/cmdlineTests/standard_model_checker_contracts_multi_source/output.json # test/cmdlineTests/standard_model_checker_contracts_only_one/output.json # test/cmdlineTests/standard_model_checker_contracts_wrong_key_sources/output.json # test/cmdlineTests/standard_model_checker_contracts_wrong_key_sources_2/output.json # test/cmdlineTests/standard_model_checker_contracts_wrong_key_sources_3/output.json # test/cmdlineTests/standard_model_checker_contracts_wrong_key_sources_4/output.json # test/cmdlineTests/standard_model_checker_divModSlacks_default_all/output.json # test/cmdlineTests/standard_model_checker_divModSlacks_default_bmc/output.json # test/cmdlineTests/standard_model_checker_divModSlacks_default_chc/output.json # test/cmdlineTests/standard_model_checker_divModSlacks_false_all/output.json # test/cmdlineTests/standard_model_checker_divModSlacks_false_bmc/output.json # test/cmdlineTests/standard_model_checker_divModSlacks_false_chc/output.json # test/cmdlineTests/standard_model_checker_divModSlacks_wrong/output.json # test/cmdlineTests/standard_model_checker_engine_all/output.json # test/cmdlineTests/standard_model_checker_engine_bmc/output.json # test/cmdlineTests/standard_model_checker_engine_chc/output.json # test/cmdlineTests/standard_model_checker_engine_none/output.json # test/cmdlineTests/standard_model_checker_ext_calls_empty_arg/output.json # test/cmdlineTests/standard_model_checker_ext_calls_trusted_chc/output.json # test/cmdlineTests/standard_model_checker_ext_calls_untrusted_chc/output.json # test/cmdlineTests/standard_model_checker_ext_calls_wrong_arg_1/output.json # test/cmdlineTests/standard_model_checker_ext_calls_wrong_arg_2/output.json # test/cmdlineTests/standard_model_checker_invariants_contract/output.json # test/cmdlineTests/standard_model_checker_invariants_contract_reentrancy/input.json # test/cmdlineTests/standard_model_checker_invariants_contract_reentrancy/output.json # test/cmdlineTests/standard_model_checker_invariants_reentrancy/input.json # test/cmdlineTests/standard_model_checker_invariants_reentrancy/output.json # test/cmdlineTests/standard_model_checker_invariants_wrong_key/output.json # test/cmdlineTests/standard_model_checker_invariants_wrong_type/output.json # test/cmdlineTests/standard_model_checker_invariants_wrong_type_2/output.json # test/cmdlineTests/standard_model_checker_print_query_all/output.json # test/cmdlineTests/standard_model_checker_print_query_bmc/output.json # test/cmdlineTests/standard_model_checker_print_query_chc/output.json # test/cmdlineTests/standard_model_checker_print_query_invalid_arg/output.json # test/cmdlineTests/standard_model_checker_print_query_no_smtlib2_solver/output.json # test/cmdlineTests/standard_model_checker_print_query_superflous_solver/output.json # test/cmdlineTests/standard_model_checker_show_proved_safe_default_all_engines/output.json # test/cmdlineTests/standard_model_checker_show_proved_safe_default_bmc/output.json # test/cmdlineTests/standard_model_checker_show_proved_safe_default_chc/output.json # test/cmdlineTests/standard_model_checker_show_proved_safe_false_all_engines/output.json # test/cmdlineTests/standard_model_checker_show_proved_safe_false_bmc/output.json # test/cmdlineTests/standard_model_checker_show_proved_safe_false_chc/output.json # test/cmdlineTests/standard_model_checker_show_proved_safe_true_all_engines/output.json # test/cmdlineTests/standard_model_checker_show_proved_safe_true_bmc/output.json # test/cmdlineTests/standard_model_checker_show_proved_safe_true_chc/output.json # test/cmdlineTests/standard_model_checker_show_proved_safe_wrong/output.json # test/cmdlineTests/standard_model_checker_show_unproved_default_all_engines/output.json # test/cmdlineTests/standard_model_checker_show_unproved_false_all_engines/output.json # test/cmdlineTests/standard_model_checker_show_unproved_false_bmc/output.json # test/cmdlineTests/standard_model_checker_show_unproved_false_chc/output.json # test/cmdlineTests/standard_model_checker_show_unproved_true_all_engines/output.json # test/cmdlineTests/standard_model_checker_show_unproved_true_bmc/output.json # test/cmdlineTests/standard_model_checker_show_unproved_true_chc/output.json # test/cmdlineTests/standard_model_checker_show_unproved_wrong/output.json # test/cmdlineTests/standard_model_checker_show_unsupported_default_all_engines/output.json # test/cmdlineTests/standard_model_checker_show_unsupported_default_bmc/output.json # test/cmdlineTests/standard_model_checker_show_unsupported_default_chc/output.json # test/cmdlineTests/standard_model_checker_show_unsupported_false_all_engines/output.json # test/cmdlineTests/standard_model_checker_show_unsupported_false_bmc/output.json # test/cmdlineTests/standard_model_checker_show_unsupported_false_chc/output.json # test/cmdlineTests/standard_model_checker_show_unsupported_true_all_engines/output.json # test/cmdlineTests/standard_model_checker_show_unsupported_true_bmc/output.json # test/cmdlineTests/standard_model_checker_show_unsupported_true_chc/output.json # test/cmdlineTests/standard_model_checker_show_unsupported_wrong/output.json # test/cmdlineTests/standard_model_checker_solvers_none/output.json # test/cmdlineTests/standard_model_checker_solvers_smtlib2/output.json # test/cmdlineTests/standard_model_checker_solvers_z3/output.json # test/cmdlineTests/standard_model_checker_solvers_z3_smtlib2/output.json # test/cmdlineTests/standard_model_checker_targets_assert_bmc/output.json # test/cmdlineTests/standard_model_checker_targets_assert_chc/output.json # test/cmdlineTests/standard_model_checker_targets_balance_bmc/output.json # test/cmdlineTests/standard_model_checker_targets_balance_chc/output.json # test/cmdlineTests/standard_model_checker_targets_constantCondition_bmc/output.json # test/cmdlineTests/standard_model_checker_targets_constantCondition_chc/output.json # test/cmdlineTests/standard_model_checker_targets_default_all_engines/output.json # test/cmdlineTests/standard_model_checker_targets_default_bmc/output.json # test/cmdlineTests/standard_model_checker_targets_default_chc/output.json # test/cmdlineTests/standard_model_checker_targets_div_by_zero_bmc/output.json # test/cmdlineTests/standard_model_checker_targets_div_by_zero_chc/output.json # test/cmdlineTests/standard_model_checker_targets_empty_array/output.json # test/cmdlineTests/standard_model_checker_targets_out_of_bounds_bmc/output.json # test/cmdlineTests/standard_model_checker_targets_out_of_bounds_chc/output.json # test/cmdlineTests/standard_model_checker_targets_overflow_bmc/output.json # test/cmdlineTests/standard_model_checker_targets_overflow_chc/output.json # test/cmdlineTests/standard_model_checker_targets_pop_empty_bmc/output.json # test/cmdlineTests/standard_model_checker_targets_pop_empty_chc/output.json # test/cmdlineTests/standard_model_checker_targets_underflow_bmc/output.json # test/cmdlineTests/standard_model_checker_targets_underflow_chc/output.json # test/cmdlineTests/standard_model_checker_targets_underflow_overflow_assert_bmc/output.json # test/cmdlineTests/standard_model_checker_targets_underflow_overflow_assert_chc/output.json # test/cmdlineTests/standard_model_checker_targets_underflow_overflow_bmc/output.json # test/cmdlineTests/standard_model_checker_targets_underflow_overflow_chc/output.json # test/cmdlineTests/standard_model_checker_targets_wrong_target_types/output.json # test/cmdlineTests/standard_model_checker_targets_wrong_target_types_2/output.json # test/cmdlineTests/standard_model_checker_targets_wrong_targets/output.json # test/cmdlineTests/standard_model_checker_timeout_all/output.json # test/cmdlineTests/standard_model_checker_timeout_bmc/output.json # test/cmdlineTests/standard_model_checker_timeout_chc/output.json # test/cmdlineTests/standard_model_checker_timeout_wrong_key/output.json # test/cmdlineTests/standard_model_checker_timeout_wrong_value/output.json # test/cmdlineTests/standard_no_append_cbor/output.json # test/cmdlineTests/standard_no_append_cbor_with_metadata_hash/output.json # test/cmdlineTests/standard_no_import_callback/output.json # test/cmdlineTests/standard_only_ast_requested/output.json # test/cmdlineTests/standard_optimizer_generatedSources/output.json # test/cmdlineTests/standard_optimizer_invalid_detail_type/output.json # test/cmdlineTests/standard_optimizer_invalid_details/output.json # test/cmdlineTests/standard_optimizer_no_yul/output.json # test/cmdlineTests/standard_optimizer_yul/output.json # test/cmdlineTests/standard_optimizer_yulDetails/output.json # test/cmdlineTests/standard_optimizer_yulDetails_no_object/output.json # test/cmdlineTests/standard_optimizer_yulDetails_optimiserSteps/output.json # test/cmdlineTests/standard_optimizer_yulDetails_optimiserSteps_invalid_abbreviation/output.json # test/cmdlineTests/standard_optimizer_yulDetails_optimiserSteps_invalid_nested_delimiter/output.json # test/cmdlineTests/standard_optimizer_yulDetails_optimiserSteps_mutliple_delimiters/output.json # test/cmdlineTests/standard_optimizer_yulDetails_optimiserSteps_nested_brackets/output.json # test/cmdlineTests/standard_optimizer_yulDetails_optimiserSteps_nesting_too_deep/output.json # test/cmdlineTests/standard_optimizer_yulDetails_optimiserSteps_type/output.json # test/cmdlineTests/standard_optimizer_yulDetails_optimiserSteps_unbalanced_closing_bracket/output.json # test/cmdlineTests/standard_optimizer_yulDetails_optimiserSteps_unbalanced_opening_bracket/output.json # test/cmdlineTests/standard_optimizer_yulDetails_optimiserSteps_with_cleanup_sequence/output.json # test/cmdlineTests/standard_optimizer_yulDetails_optimiserSteps_with_empty_cleanup_sequence/input.json # test/cmdlineTests/standard_optimizer_yulDetails_optimiserSteps_with_empty_cleanup_sequence/output.json # test/cmdlineTests/standard_optimizer_yulDetails_optimiserSteps_with_empty_optimisation_sequence/input.json # test/cmdlineTests/standard_optimizer_yulDetails_optimiserSteps_with_empty_optimisation_sequence/output.json # test/cmdlineTests/standard_optimizer_yulDetails_optimiserSteps_with_empty_sequence/input.json # test/cmdlineTests/standard_optimizer_yulDetails_optimiserSteps_with_empty_sequence/output.json # test/cmdlineTests/standard_optimizer_yulDetails_without_yul/output.json # test/cmdlineTests/standard_output_selection_all_blank/input.json # test/cmdlineTests/standard_output_selection_all_sources_single_contract_multiple_matches/input.json # test/cmdlineTests/standard_output_selection_all_sources_single_contract_single_match/input.json # test/cmdlineTests/standard_output_selection_all_star/input.json # test/cmdlineTests/standard_output_selection_single_all/input.json # test/cmdlineTests/standard_output_selection_single_source_single_contract_multiple_matches/input.json # test/cmdlineTests/standard_output_selection_single_source_single_contract_single_match/input.json # test/cmdlineTests/standard_output_selection_wrong_type/input.json # test/cmdlineTests/standard_output_selection_wrong_type/output.json # test/cmdlineTests/standard_output_selection_wrong_type_contract/input.json # test/cmdlineTests/standard_output_selection_wrong_type_contract/output.json # test/cmdlineTests/standard_output_selection_wrong_type_output/input.json # test/cmdlineTests/standard_output_selection_wrong_type_output/output.json # test/cmdlineTests/standard_output_selection_wrong_type_source/input.json # test/cmdlineTests/standard_output_selection_wrong_type_source/output.json # test/cmdlineTests/standard_outputs_on_analysis_error_fatal/output.json # test/cmdlineTests/standard_outputs_on_analysis_error_fatal_after_current_step/output.json # test/cmdlineTests/standard_outputs_on_analysis_error_non_fatal/output.json # test/cmdlineTests/standard_outputs_on_compilation_error/output.json # test/cmdlineTests/standard_outputs_on_parsing_error/output.json # test/cmdlineTests/standard_parsing_import_absolute_paths/output.json # test/cmdlineTests/standard_secondary_source_location/output.json # test/cmdlineTests/standard_stop_after_parsing_ast_requested/output.json # test/cmdlineTests/standard_stop_after_parsing_bytecode_requested/output.json # test/cmdlineTests/standard_stop_after_parsing_non_binary_output_requested/output.json # test/cmdlineTests/standard_urls_existing_and_missing/output.json # test/cmdlineTests/standard_urls_missing/output.json # test/cmdlineTests/standard_viair_requested/output.json # test/cmdlineTests/standard_wrong_key_auxiliary_input/output.json # test/cmdlineTests/standard_wrong_key_metadata/input.json # test/cmdlineTests/standard_wrong_key_metadata/output.json # test/cmdlineTests/standard_wrong_key_optimizer/input.json # test/cmdlineTests/standard_wrong_key_optimizer/output.json # test/cmdlineTests/standard_wrong_key_root/output.json # test/cmdlineTests/standard_wrong_key_settings/input.json # test/cmdlineTests/standard_wrong_key_settings/output.json # test/cmdlineTests/standard_wrong_key_source/output.json # test/cmdlineTests/standard_wrong_type_auxiliary_input/output.json # test/cmdlineTests/standard_wrong_type_auxiliary_input_smtlib2responses/output.json # test/cmdlineTests/standard_wrong_type_auxiliary_input_smtlib2responses_member/output.json # test/cmdlineTests/standard_wrong_type_metadata/output.json # test/cmdlineTests/standard_wrong_type_optimizer/output.json # test/cmdlineTests/standard_wrong_type_remappings/output.json # test/cmdlineTests/standard_wrong_type_remappings_entry/output.json # test/cmdlineTests/standard_wrong_type_root/output.json # test/cmdlineTests/standard_wrong_type_settings/output.json # test/cmdlineTests/standard_wrong_type_source/output.json # test/cmdlineTests/standard_wrong_type_sources/output.json # test/cmdlineTests/standard_wrong_type_useLiteralContent/output.json # test/cmdlineTests/standard_yul/output.json # test/cmdlineTests/standard_yul_debug_info_print_all/output.json # test/cmdlineTests/standard_yul_debug_info_print_location_only/output.json # test/cmdlineTests/standard_yul_debug_info_print_none/output.json # test/cmdlineTests/standard_yul_debug_info_print_snippet_only/output.json # test/cmdlineTests/standard_yul_evm_version_byzantium/output.json # test/cmdlineTests/standard_yul_immutable_references/output.json # test/cmdlineTests/standard_yul_multiple_files/output.json # test/cmdlineTests/standard_yul_multiple_files_selected/output.json # test/cmdlineTests/standard_yul_object/output.json # test/cmdlineTests/standard_yul_object_invalid_sub/output.json # test/cmdlineTests/standard_yul_object_name/output.json # test/cmdlineTests/standard_yul_optimiserSteps/output.json # test/cmdlineTests/standard_yul_optimized/output.json # test/cmdlineTests/standard_yul_single_file_via_urls/output.json # test/cmdlineTests/standard_yul_stack_opt/output.json # test/cmdlineTests/standard_yul_stack_opt_disabled/output.json # test/cmdlineTests/stop_after_parsing_ast/output # test/cmdlineTests/storage_layout_bytes/output.json # test/cmdlineTests/storage_layout_dyn_array/output.json # test/cmdlineTests/storage_layout_many/output.json # test/cmdlineTests/storage_layout_mapping/output.json # test/cmdlineTests/storage_layout_smoke/output.json # test/cmdlineTests/storage_layout_smoke_two_contracts/output.json # test/cmdlineTests/storage_layout_string/output.json # test/cmdlineTests/storage_layout_struct/output.json # test/cmdlineTests/storage_layout_struct_packed/output.json # test/cmdlineTests/storage_layout_user_defined/output # test/cmdlineTests/storage_layout_value_types/output.json # test/cmdlineTests/storage_layout_value_types_packed/output.json # test/cmdlineTests/strict_asm_asm_json_arbitrary_source_index/exit # test/cmdlineTests/strict_asm_ast_compact_json/output # test/cmdlineTests/strict_asm_evm_version_byzantium/output # test/cmdlineTests/strict_asm_evm_version_constantinople/output # test/cmdlineTests/strict_asm_msize_without_optimizer/output # test/cmdlineTests/strict_asm_optimizer_steps/output # test/cmdlineTests/strict_asm_output_selection_asm_only/output # test/cmdlineTests/strict_asm_output_selection_invalid/err # test/cmdlineTests/strict_asm_warning_and_error_optimize/exit # test/cmdlineTests/viair_msize_without_optimizer/output # test/cmdlineTests/viair_subobject_optimization/output # test/cmdlineTests/yul_function_name_clashes_different_params/output # test/cmdlineTests/yul_optimize_runs/args # test/cmdlineTests/yul_optimize_runs/output # test/cmdlineTests/yul_optimizer_steps_disabled/err # test/cmdlineTests/yul_string_format_ascii/output.json # test/cmdlineTests/yul_string_format_ascii_bytes32/output.json # test/cmdlineTests/yul_string_format_ascii_bytes32_from_number/output.json # test/cmdlineTests/yul_string_format_ascii_long/output.json # test/cmdlineTests/yul_string_format_hex/output.json # test/cmdlineTests/yul_verbatim_msize/output # test/cmdlineTests/~assembler_modes/test.sh # test/cmdlineTests/~documentation_examples/test.sh # test/cmdlineTests/~soljson_via_fuzzer/test.sh # test/compilationTests/corion/ico.sol # test/compilationTests/corion/premium.sol # test/compilationTests/corion/schelling.sol # test/compilationTests/corion/token.sol # test/evmc/README.md # test/evmc/evmc.h # test/evmc/evmc.hpp # test/evmc/helpers.h # test/evmc/hex.hpp # test/evmc/mocked_host.hpp # test/externalTests/bleeps.sh # test/externalTests/brink.sh # test/externalTests/chainlink.sh # test/externalTests/colony.sh # test/externalTests/elementfi.sh # test/externalTests/ens.sh # test/externalTests/euler.sh # test/externalTests/gnosis.sh # test/externalTests/gp2.sh # test/externalTests/pool-together.sh # test/externalTests/prb-math.py # test/externalTests/trident.sh # test/externalTests/uniswap.sh # test/externalTests/yield-liquidator.sh # test/externalTests/zeppelin.sh # test/formal/opcodes.py # test/libevmasm/Assembler.cpp # test/libevmasm/Optimiser.cpp # test/liblangutil/Scanner.cpp # test/libsolidity/ABIJson/basic_test.sol # test/libsolidity/ABIJson/constructor_abi.sol # test/libsolidity/ABIJson/empty_name_input_parameter_with_named_one.sol # test/libsolidity/ABIJson/empty_name_return_parameters.sol # test/libsolidity/ABIJson/errors.sol # test/libsolidity/ABIJson/errors_referenced.sol # test/libsolidity/ABIJson/event_emited_in_base_contract.sol # test/libsolidity/ABIJson/event_emitted_from_foreign_contract.sol # test/libsolidity/ABIJson/event_file_level.sol # test/libsolidity/ABIJson/event_structs.sol # test/libsolidity/ABIJson/events.sol # test/libsolidity/ABIJson/events_indirect.sol # test/libsolidity/ABIJson/function_type.sol # test/libsolidity/ABIJson/function_type_extended.sol # test/libsolidity/ABIJson/global_struct.sol # test/libsolidity/ABIJson/inherited.sol # test/libsolidity/ABIJson/library_function.sol # test/libsolidity/ABIJson/mapping.sol # test/libsolidity/ABIJson/multiple_methods.sol # test/libsolidity/ABIJson/multiple_methods_order.sol # test/libsolidity/ABIJson/multiple_params.sol # test/libsolidity/ABIJson/payable_constructor_abi.sol # test/libsolidity/ABIJson/pure_function.sol # test/libsolidity/ABIJson/return_param_in_abi.sol # test/libsolidity/ABIJson/return_structs.sol # test/libsolidity/ABIJson/return_structs_with_contracts.sol # test/libsolidity/ABIJson/structs_and_arrays.sol # test/libsolidity/ABIJson/structs_in_libraries.sol # test/libsolidity/ABIJson/user_defined_value_type.sol # test/libsolidity/ABIJson/view_function.sol # test/libsolidity/ASTJSON/abstract_contract.json # test/libsolidity/ASTJSON/abstract_contract.sol # test/libsolidity/ASTJSON/abstract_contract_parseOnly.json # test/libsolidity/ASTJSON/address_payable.json # test/libsolidity/ASTJSON/address_payable.sol # test/libsolidity/ASTJSON/address_payable_parseOnly.json # test/libsolidity/ASTJSON/array_type_name.json # test/libsolidity/ASTJSON/array_type_name_parseOnly.json # test/libsolidity/ASTJSON/assembly/call.json # test/libsolidity/ASTJSON/assembly/call.sol # test/libsolidity/ASTJSON/assembly/call_parseOnly.json # test/libsolidity/ASTJSON/assembly/empty_block.json # test/libsolidity/ASTJSON/assembly/empty_block.sol # test/libsolidity/ASTJSON/assembly/empty_block_parseOnly.json # test/libsolidity/ASTJSON/assembly/function.json # test/libsolidity/ASTJSON/assembly/function.sol # test/libsolidity/ASTJSON/assembly/function_parseOnly.json # test/libsolidity/ASTJSON/assembly/leave.json # test/libsolidity/ASTJSON/assembly/leave.sol # test/libsolidity/ASTJSON/assembly/leave_parseOnly.json # test/libsolidity/ASTJSON/assembly/loop.json # test/libsolidity/ASTJSON/assembly/loop.sol # test/libsolidity/ASTJSON/assembly/loop_parseOnly.json # test/libsolidity/ASTJSON/assembly/nested_functions.json # test/libsolidity/ASTJSON/assembly/nested_functions.sol # test/libsolidity/ASTJSON/assembly/nested_functions_parseOnly.json # test/libsolidity/ASTJSON/assembly/slot_offset.json # test/libsolidity/ASTJSON/assembly/slot_offset.sol # test/libsolidity/ASTJSON/assembly/slot_offset_parseOnly.json # test/libsolidity/ASTJSON/assembly/stringlit.json # test/libsolidity/ASTJSON/assembly/stringlit.sol # test/libsolidity/ASTJSON/assembly/stringlit_parseOnly.json # test/libsolidity/ASTJSON/assembly/switch.json # test/libsolidity/ASTJSON/assembly/switch.sol # test/libsolidity/ASTJSON/assembly/switch_default.json # test/libsolidity/ASTJSON/assembly/switch_default.sol # test/libsolidity/ASTJSON/assembly/switch_default_parseOnly.json # test/libsolidity/ASTJSON/assembly/switch_parseOnly.json # test/libsolidity/ASTJSON/assembly/var_access.json # test/libsolidity/ASTJSON/assembly/var_access.sol # test/libsolidity/ASTJSON/assembly/var_access_parseOnly.json # test/libsolidity/ASTJSON/ast_internal_function_different_ids_export.json # test/libsolidity/ASTJSON/ast_internal_function_different_ids_export.sol # test/libsolidity/ASTJSON/ast_internal_function_id_export.json # test/libsolidity/ASTJSON/base_constructor_call.json # test/libsolidity/ASTJSON/base_constructor_call_parseOnly.json # test/libsolidity/ASTJSON/constructor.json # test/libsolidity/ASTJSON/constructor.sol # test/libsolidity/ASTJSON/constructor_parseOnly.json # test/libsolidity/ASTJSON/contract_dep_order.json # test/libsolidity/ASTJSON/contract_dep_order_parseOnly.json # test/libsolidity/ASTJSON/documentation.json # test/libsolidity/ASTJSON/documentation.sol # test/libsolidity/ASTJSON/documentation_local_variable.json # test/libsolidity/ASTJSON/documentation_local_variable_parseOnly.json # test/libsolidity/ASTJSON/documentation_on_statements.json # test/libsolidity/ASTJSON/documentation_on_statements_parseOnly.json # test/libsolidity/ASTJSON/documentation_parseOnly.json # test/libsolidity/ASTJSON/documentation_triple.json # test/libsolidity/ASTJSON/documentation_triple_parseOnly.json # test/libsolidity/ASTJSON/enum_natspec.json # test/libsolidity/ASTJSON/enum_natspec_parseOnly.json # test/libsolidity/ASTJSON/enum_value.json # test/libsolidity/ASTJSON/enum_value_declaration.json # test/libsolidity/ASTJSON/enum_value_declaration_parseOnly.json # test/libsolidity/ASTJSON/enum_value_parseOnly.json # test/libsolidity/ASTJSON/event_aggregated_contract.json # test/libsolidity/ASTJSON/event_definition.json # test/libsolidity/ASTJSON/event_definition_parseOnly.json # test/libsolidity/ASTJSON/event_emited_in_base_contract.json # test/libsolidity/ASTJSON/event_emitted_from_foreign_contract.json # test/libsolidity/ASTJSON/event_emitted_from_foreign_contract_parseOnly.json # test/libsolidity/ASTJSON/event_inheritance.json # test/libsolidity/ASTJSON/event_with_variables_of_internal_types.sol # test/libsolidity/ASTJSON/event_with_variables_of_internal_types_parseOnly.json # test/libsolidity/ASTJSON/fail_after_parsing.sol # test/libsolidity/ASTJSON/fail_after_parsing_parseOnly.json # test/libsolidity/ASTJSON/fallback.json # test/libsolidity/ASTJSON/fallback.sol # test/libsolidity/ASTJSON/fallback_and_receive_ether.json # test/libsolidity/ASTJSON/fallback_and_receive_ether.sol # test/libsolidity/ASTJSON/fallback_and_receive_ether_parseOnly.json # test/libsolidity/ASTJSON/fallback_parseOnly.json # test/libsolidity/ASTJSON/fallback_payable.json # test/libsolidity/ASTJSON/fallback_payable.sol # test/libsolidity/ASTJSON/fallback_payable_parseOnly.json # test/libsolidity/ASTJSON/function_type.json # test/libsolidity/ASTJSON/function_type_parseOnly.json # test/libsolidity/ASTJSON/global_enum.json # test/libsolidity/ASTJSON/global_enum_parseOnly.json # test/libsolidity/ASTJSON/global_struct.json # test/libsolidity/ASTJSON/global_struct_parseOnly.json # test/libsolidity/ASTJSON/indirect_event.json # test/libsolidity/ASTJSON/indirect_event_parseOnly.json # test/libsolidity/ASTJSON/inheritance_specifier.json # test/libsolidity/ASTJSON/inheritance_specifier_parseOnly.json # test/libsolidity/ASTJSON/license.json # test/libsolidity/ASTJSON/license_parseOnly.json # test/libsolidity/ASTJSON/long_type_name_binary_operation.json # test/libsolidity/ASTJSON/long_type_name_binary_operation_parseOnly.json # test/libsolidity/ASTJSON/long_type_name_identifier.json # test/libsolidity/ASTJSON/long_type_name_identifier_parseOnly.json # test/libsolidity/ASTJSON/mappings.json # test/libsolidity/ASTJSON/mappings.sol # test/libsolidity/ASTJSON/mappings_parseOnly.json # test/libsolidity/ASTJSON/modifier_definition.json # test/libsolidity/ASTJSON/modifier_definition_parseOnly.json # test/libsolidity/ASTJSON/modifier_invocation.json # test/libsolidity/ASTJSON/modifier_invocation_parseOnly.json # test/libsolidity/ASTJSON/mutability.json # test/libsolidity/ASTJSON/mutability.sol # test/libsolidity/ASTJSON/mutability_parseOnly.json # test/libsolidity/ASTJSON/non_utf8.json # test/libsolidity/ASTJSON/non_utf8_parseOnly.json # test/libsolidity/ASTJSON/not_existing_import.sol # test/libsolidity/ASTJSON/not_existing_import_parseOnly.json # test/libsolidity/ASTJSON/override.json # test/libsolidity/ASTJSON/override.sol # test/libsolidity/ASTJSON/override_parseOnly.json # test/libsolidity/ASTJSON/placeholder_statement.json # test/libsolidity/ASTJSON/placeholder_statement_parseOnly.json # test/libsolidity/ASTJSON/pragma_experimental_solidity_parseOnly.json # test/libsolidity/ASTJSON/receive_ether.json # test/libsolidity/ASTJSON/receive_ether.sol # test/libsolidity/ASTJSON/receive_ether_parseOnly.json # test/libsolidity/ASTJSON/short_type_name.json # test/libsolidity/ASTJSON/short_type_name_parseOnly.json # test/libsolidity/ASTJSON/short_type_name_ref.json # test/libsolidity/ASTJSON/short_type_name_ref_parseOnly.json # test/libsolidity/ASTJSON/smoke.json # test/libsolidity/ASTJSON/smoke_parseOnly.json # test/libsolidity/ASTJSON/source_location.json # test/libsolidity/ASTJSON/source_location_parseOnly.json # test/libsolidity/ASTJSON/string.json # test/libsolidity/ASTJSON/string_parseOnly.json # test/libsolidity/ASTJSON/struct_natspec.json # test/libsolidity/ASTJSON/struct_natspec_parseOnly.json # test/libsolidity/ASTJSON/two_base_functions.json # test/libsolidity/ASTJSON/two_base_functions.sol # test/libsolidity/ASTJSON/two_base_functions_parseOnly.json # test/libsolidity/ASTJSON/unicode.json # test/libsolidity/ASTJSON/unicode_parseOnly.json # test/libsolidity/ASTJSON/used_errors.json # test/libsolidity/ASTJSON/used_errors.sol # test/libsolidity/ASTJSON/used_errors_parseOnly.json # test/libsolidity/ASTJSON/userDefinedValueType.json # test/libsolidity/ASTJSON/userDefinedValueType.sol # test/libsolidity/ASTJSON/userDefinedValueType_parseOnly.json # test/libsolidity/ASTJSON/user_defined_operator.json # test/libsolidity/ASTJSON/user_defined_operator.sol # test/libsolidity/ASTJSON/using_for_directive.json # test/libsolidity/ASTJSON/using_for_directive_parseOnly.json # test/libsolidity/ASTJSON/yul_hex_literal.json # test/libsolidity/ASTJSON/yul_hex_literal.sol # test/libsolidity/ASTJSON/yul_hex_literal_parseOnly.json # test/libsolidity/ASTPropertyTest.cpp # test/libsolidity/ASTPropertyTest.h # test/libsolidity/AnalysisFramework.h # test/libsolidity/Assembly.cpp # test/libsolidity/GasCosts.cpp # test/libsolidity/GasMeter.cpp # test/libsolidity/GasTest.cpp # test/libsolidity/InlineAssembly.cpp # test/libsolidity/LibSolc.cpp # test/libsolidity/MemoryGuardTest.cpp # test/libsolidity/MemoryGuardTest.h # test/libsolidity/Metadata.cpp # test/libsolidity/NatspecJSONTest.cpp # test/libsolidity/NatspecJSONTest.h # test/libsolidity/SMTCheckerTest.cpp # test/libsolidity/SMTCheckerTest.h # test/libsolidity/SemanticTest.cpp # test/libsolidity/SolidityEndToEndTest.cpp # test/libsolidity/SolidityExecutionFramework.cpp # test/libsolidity/SolidityExpressionCompiler.cpp # test/libsolidity/SolidityOptimizer.cpp # test/libsolidity/SolidityParser.cpp # test/libsolidity/StandardCompiler.cpp # test/libsolidity/SyntaxTest.cpp # test/libsolidity/SyntaxTest.h # test/libsolidity/ViewPureChecker.cpp # test/libsolidity/astPropertyTests/forLoop/isSimpleCounterLoop_negative_cases.sol # test/libsolidity/gasTests/abiv2.sol # test/libsolidity/gasTests/abiv2_optimised.sol # test/libsolidity/interface/FileReader.cpp # test/libsolidity/natspecJSON/dev_multiple_params_mixed_whitespace.sol # test/libsolidity/semanticTests/abiEncoderV1/abi_decode_v2_storage.sol # test/libsolidity/semanticTests/abiEncoderV1/abi_encode_calldata_slice.sol # test/libsolidity/semanticTests/abiEncoderV1/struct/struct_storage_ptr.sol # test/libsolidity/semanticTests/abiEncoderV2/abi_encode_calldata_slice.sol # test/libsolidity/semanticTests/abiEncoderV2/abi_encode_v2.sol # test/libsolidity/semanticTests/abiEncoderV2/abi_encode_v2_in_function_inherited_in_v1_contract.sol # test/libsolidity/semanticTests/abiEncoderV2/abi_encode_v2_in_modifier_used_in_v1_contract.sol # test/libsolidity/semanticTests/abiEncoderV2/calldata_array.sol # test/libsolidity/semanticTests/abiEncoderV2/calldata_overlapped_dynamic_arrays.sol # test/libsolidity/semanticTests/abiEncoderV2/storage_array_encoding.sol # test/libsolidity/semanticTests/abiencodedecode/abi_decode_simple_storage.sol # test/libsolidity/semanticTests/arithmetics/check_var_init.sol # test/libsolidity/semanticTests/array/array_memory_index_access.sol # test/libsolidity/semanticTests/array/array_storage_index_access.sol # test/libsolidity/semanticTests/array/array_storage_index_boundary_test.sol # test/libsolidity/semanticTests/array/array_storage_index_zeroed_test.sol # test/libsolidity/semanticTests/array/array_storage_length_access.sol # test/libsolidity/semanticTests/array/array_storage_push_empty.sol # test/libsolidity/semanticTests/array/array_storage_push_empty_length_address.sol # test/libsolidity/semanticTests/array/array_storage_push_pop.sol # test/libsolidity/semanticTests/array/arrays_complex_from_and_to_storage.sol # test/libsolidity/semanticTests/array/byte_array_storage_layout.sol # test/libsolidity/semanticTests/array/byte_array_transitional_2.sol # test/libsolidity/semanticTests/array/bytes_length_member.sol # test/libsolidity/semanticTests/array/constant_var_as_array_length.sol # test/libsolidity/semanticTests/array/copying/array_copy_calldata_storage.sol # test/libsolidity/semanticTests/array/copying/array_copy_cleanup_uint40.sol # test/libsolidity/semanticTests/array/copying/array_copy_clear_storage.sol # test/libsolidity/semanticTests/array/copying/array_copy_different_packing.sol # test/libsolidity/semanticTests/array/copying/array_copy_including_array.sol # test/libsolidity/semanticTests/array/copying/array_copy_nested_array.sol # test/libsolidity/semanticTests/array/copying/array_copy_storage_storage_different_base.sol # test/libsolidity/semanticTests/array/copying/array_copy_storage_storage_different_base_nested.sol # test/libsolidity/semanticTests/array/copying/array_copy_storage_storage_dyn_dyn.sol # test/libsolidity/semanticTests/array/copying/array_copy_storage_storage_dynamic_dynamic.sol # test/libsolidity/semanticTests/array/copying/array_copy_storage_storage_static_dynamic.sol # test/libsolidity/semanticTests/array/copying/array_copy_storage_storage_static_static.sol # test/libsolidity/semanticTests/array/copying/array_copy_storage_storage_struct.sol # test/libsolidity/semanticTests/array/copying/array_copy_storage_to_memory_nested.sol # test/libsolidity/semanticTests/array/copying/array_copy_target_leftover.sol # test/libsolidity/semanticTests/array/copying/array_copy_target_simple.sol # test/libsolidity/semanticTests/array/copying/array_copy_target_simple_2.sol # test/libsolidity/semanticTests/array/copying/array_elements_to_mapping.sol # test/libsolidity/semanticTests/array/copying/array_nested_calldata_to_storage.sol # test/libsolidity/semanticTests/array/copying/array_nested_memory_to_storage.sol # test/libsolidity/semanticTests/array/copying/array_of_function_external_storage_to_storage_dynamic.sol # test/libsolidity/semanticTests/array/copying/array_of_function_external_storage_to_storage_dynamic_different_mutability.sol # test/libsolidity/semanticTests/array/copying/array_of_struct_calldata_to_storage.sol # test/libsolidity/semanticTests/array/copying/array_of_struct_memory_to_storage.sol # test/libsolidity/semanticTests/array/copying/array_of_structs_containing_arrays_calldata_to_storage.sol # test/libsolidity/semanticTests/array/copying/array_of_structs_containing_arrays_memory_to_storage.sol # test/libsolidity/semanticTests/array/copying/array_storage_multi_items_per_slot.sol # test/libsolidity/semanticTests/array/copying/array_to_mapping.sol # test/libsolidity/semanticTests/array/copying/arrays_from_and_to_storage.sol # test/libsolidity/semanticTests/array/copying/bytes_inside_mappings.sol # test/libsolidity/semanticTests/array/copying/bytes_storage_to_storage.sol # test/libsolidity/semanticTests/array/copying/calldata_array_dynamic_to_storage.sol # test/libsolidity/semanticTests/array/copying/calldata_array_to_mapping.sol # test/libsolidity/semanticTests/array/copying/cleanup_during_multi_element_per_slot_copy.sol # test/libsolidity/semanticTests/array/copying/copy_byte_array_in_struct_to_storage.sol # test/libsolidity/semanticTests/array/copying/copy_byte_array_to_storage.sol # test/libsolidity/semanticTests/array/copying/copy_function_internal_storage_array.sol # test/libsolidity/semanticTests/array/copying/copy_removes_bytes_data.sol # test/libsolidity/semanticTests/array/copying/copying_bytes_multiassign.sol # test/libsolidity/semanticTests/array/copying/elements_of_nested_array_of_structs_calldata_to_storage.sol # test/libsolidity/semanticTests/array/copying/elements_of_nested_array_of_structs_memory_to_storage.sol # test/libsolidity/semanticTests/array/copying/function_type_array_to_storage.sol # test/libsolidity/semanticTests/array/copying/memory_dyn_2d_bytes_to_storage.sol # test/libsolidity/semanticTests/array/copying/nested_array_element_storage_to_storage.sol # test/libsolidity/semanticTests/array/copying/nested_array_of_structs_calldata_to_storage.sol # test/libsolidity/semanticTests/array/copying/nested_array_of_structs_memory_to_storage.sol # test/libsolidity/semanticTests/array/copying/nested_array_of_structs_storage_to_storage.sol # test/libsolidity/semanticTests/array/copying/nested_dynamic_array_element_calldata_to_storage.sol # test/libsolidity/semanticTests/array/copying/storage_memory_nested.sol # test/libsolidity/semanticTests/array/copying/storage_memory_nested_bytes.sol # test/libsolidity/semanticTests/array/copying/storage_memory_nested_from_pointer.sol # test/libsolidity/semanticTests/array/copying/storage_memory_nested_struct.sol # test/libsolidity/semanticTests/array/copying/storage_memory_packed_dyn.sol # test/libsolidity/semanticTests/array/create_memory_array.sol # test/libsolidity/semanticTests/array/delete/bytes_delete_element.sol # test/libsolidity/semanticTests/array/dynamic_array_cleanup.sol # test/libsolidity/semanticTests/array/dynamic_arrays_in_storage.sol # test/libsolidity/semanticTests/array/dynamic_multi_array_cleanup.sol # test/libsolidity/semanticTests/array/fixed_array_cleanup.sol # test/libsolidity/semanticTests/array/fixed_arrays_as_return_type.sol # test/libsolidity/semanticTests/array/fixed_arrays_in_constructors.sol # test/libsolidity/semanticTests/array/function_array_cross_calls.sol # test/libsolidity/semanticTests/array/invalid_encoding_for_storage_byte_array.sol # test/libsolidity/semanticTests/array/pop/array_pop_array_transition.sol # test/libsolidity/semanticTests/array/pop/array_pop_uint16_transition.sol # test/libsolidity/semanticTests/array/pop/array_pop_uint24_transition.sol # test/libsolidity/semanticTests/array/pop/byte_array_pop_long_storage_empty.sol # test/libsolidity/semanticTests/array/pop/byte_array_pop_long_storage_empty_garbage_ref.sol # test/libsolidity/semanticTests/array/pop/byte_array_pop_masking_long.sol # test/libsolidity/semanticTests/array/push/array_push.sol # test/libsolidity/semanticTests/array/push/array_push_nested_from_calldata.sol # test/libsolidity/semanticTests/array/push/array_push_struct.sol # test/libsolidity/semanticTests/array/push/array_push_struct_from_calldata.sol # test/libsolidity/semanticTests/array/push/byte_array_push_transition.sol # test/libsolidity/semanticTests/array/push/nested_bytes_push.sol # test/libsolidity/semanticTests/array/push/push_no_args_2d.sol # test/libsolidity/semanticTests/array/push/push_no_args_bytes.sol # test/libsolidity/semanticTests/array/reusing_memory.sol # test/libsolidity/semanticTests/byte_array_to_storage_cleanup.sol # test/libsolidity/semanticTests/calldata/copy_from_calldata_removes_bytes_data.sol # test/libsolidity/semanticTests/constructor/arrays_in_constructors.sol # test/libsolidity/semanticTests/constructor/bytes_in_constructors_packer.sol # test/libsolidity/semanticTests/constructor/bytes_in_constructors_unpacker.sol # test/libsolidity/semanticTests/constructor/constructor_arguments_external.sol # test/libsolidity/semanticTests/constructor/constructor_function_complex.sol # test/libsolidity/semanticTests/constructor/constructor_static_array_argument.sol # test/libsolidity/semanticTests/constructor/no_callvalue_check.sol # test/libsolidity/semanticTests/constructor_inheritance_init_order.sol # test/libsolidity/semanticTests/constructor_inheritance_init_order_2.sol # test/libsolidity/semanticTests/constructor_with_params.sol # test/libsolidity/semanticTests/constructor_with_params_diamond_inheritance.sol # test/libsolidity/semanticTests/constructor_with_params_inheritance.sol # test/libsolidity/semanticTests/events/event_dynamic_array_storage.sol # test/libsolidity/semanticTests/events/event_dynamic_array_storage_v2.sol # test/libsolidity/semanticTests/events/event_dynamic_nested_array_storage_v2.sol # test/libsolidity/semanticTests/events/event_emit_from_other_contract.sol # test/libsolidity/semanticTests/events/event_indexed_string.sol # test/libsolidity/semanticTests/externalContracts/FixedFeeRegistrar.sol # test/libsolidity/semanticTests/externalContracts/_prbmath/PRBMathCommon.sol # test/libsolidity/semanticTests/externalContracts/base64.sol # test/libsolidity/semanticTests/externalContracts/deposit_contract.sol # test/libsolidity/semanticTests/externalContracts/prbmath_signed.sol # test/libsolidity/semanticTests/externalContracts/prbmath_unsigned.sol # test/libsolidity/semanticTests/externalContracts/ramanujan_pi.sol # test/libsolidity/semanticTests/externalContracts/snark.sol # test/libsolidity/semanticTests/externalContracts/strings.sol # test/libsolidity/semanticTests/freeFunctions/new_operator.sol # test/libsolidity/semanticTests/functionCall/creation_function_call_no_args.sol # test/libsolidity/semanticTests/functionCall/creation_function_call_with_args.sol # test/libsolidity/semanticTests/functionCall/creation_function_call_with_salt.sol # test/libsolidity/semanticTests/functionCall/external_call_to_nonexisting.sol # test/libsolidity/semanticTests/functionCall/external_call_to_nonexisting_debugstrings.sol # test/libsolidity/semanticTests/functionCall/failed_create.sol # test/libsolidity/semanticTests/functionCall/gas_and_value_basic.sol # test/libsolidity/semanticTests/functionCall/gas_and_value_brace_syntax.sol # test/libsolidity/semanticTests/functionCall/map…
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This is an automatically-generated sync PR to bring this translation repository up to date with the state of the English documentation as of 2024-10-26 (commit 879d8e69).
How to work on a sync PR
Resolve conflicts and translate newly added text
Work on one sync PR at a time
Do not squash merge or rebase this PR
Rebasing or squashing a sync PR erases the information about the commits that the changes originally came from, which will result in extra conflicts in the next sync PR.
If you do it by accident, don't worry - simply make sure to handle the next sync PR properly, which will restore the missing commits.
Review checklist
The following files were modified in this pull request. Please review them before merging the PR: