aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix internal compiler error when parsing ``var`` declaration without identifier.Daniel Kirchner2018-04-125-24/+31
|
* Merge pull request #3848 from ethereum/constantDivisionByZerochriseth2018-04-1218-20/+146
|\ | | | | Error on invalid arithmetic with constant expressions.
| * Add test to check ConstantEvaluator for pure non-rational functions.Daniel Kirchner2018-04-121-0/+11
| |
| * Add tests for literal operations as well.Daniel Kirchner2018-04-124-0/+20
| |
| * Error on invalid arithmetic with constant expressions.Daniel Kirchner2018-04-1213-20/+115
| |
* | Merge pull request #3485 from ethereum/js-tests-node8chriseth2018-04-122-5/+5
|\ \ | | | | | | Require node 8 for Javascript tests
| * | Require node 8 for Javascript testsAlex Beregszaszi2018-04-032-5/+5
| | |
* | | Merge pull request #3752 from ethereum/fixStateVariableParsingchriseth2018-04-1253-475/+373
|\ \ \ | | | | | | | | Fix state variable parsing
| * | | Properly cope with constructor headers.chriseth2018-04-123-3/+21
| | | |
| * | | Update expectations.chriseth2018-04-1210-17/+18
| | | |
| * | | Extract modifier tests.chriseth2018-04-1215-158/+73
| | | |
| * | | Warn if modifiers are applied to functions without implementation.chriseth2018-04-125-4/+35
| | | |
| * | | Changelog entry.chriseth2018-04-121-0/+1
| | | |
| * | | New tests for function state variables.chriseth2018-04-126-0/+61
| | | |
| * | | Fix state variable parsing.chriseth2018-04-121-0/+8
| | | |
| * | | Add expectations.chriseth2018-04-1224-9/+53
| | | |
| * | | Extract function type tests.chriseth2018-04-1226-313/+132
|/ / /
* | | Merge pull request #3855 from ldct/patch-3Alex Beregszaszi2018-04-121-1/+1
|\ \ \ | | | | | | | | mark --formal as deprecated in cli options
| * | | Mark --formal as deprecated in CLI optionsLi Xuanji2018-04-121-1/+1
| | | |
* | | | Merge pull request #3863 from ethereum/fixGasEstimationchriseth2018-04-123-1/+22
|\ \ \ \ | | | | | | | | | | Correctly ignore costs of fallback for other functions.
| * | | | Correctly ignore costs of fallback for other functions.chriseth2018-04-123-1/+22
| |/ / /
* | | | Merge pull request #3830 from ethereum/fix-include-paths-errorsDaniel Kirchner2018-04-124-9/+35
|\ \ \ \ | |_|_|/ |/| | | Fix include paths errors
| * | | Prevent information about file existence outside the allowed paths to leak ↵Daniel Kirchner2018-04-124-7/+33
| | | | | | | | | | | | | | | | by mimicing boost::filesystem::weakly_canonical.
| * | | Fix file missing error message on imports.Sergiusz Bazanski2018-04-061-10/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Trying to convert an import path into a Boost canonical path causes boost to throw an exception if the given file does not exist. Thus, instead of geting to the 'File not found' error, we instead got into the cath-all handler for 'Unknown exception in read callback'. This change rearranges the file checks to happen before we create a canonical Boost path. It also drive-by removes the unnecessary 'else' block, as the body of the if is a guard-like return block.
* | | | Merge pull request #3862 from ethereum/fixConstantEvaluatorTuplesAlex Beregszaszi2018-04-1226-165/+160
|\ \ \ \ | |_|/ / |/| | | Fix ConstantEvaluator to correctly handle single element tuples (i.e. parenthesis).
| * | | Fix ConstantEvaluator to correctly handle single element tuples.Daniel Kirchner2018-04-126-0/+43
| | | |
| * | | Syntax Tests: extract array_length_* tests.Daniel Kirchner2018-04-1220-165/+117
|/ / /
* | | Merge pull request #3580 from ethereum/asm-bitshift-optimchriseth2018-04-115-1/+150
|\ \ \ | | | | | | | | Add simplification rule for bitwise shifting
| * | | Ignore shift warnings on constantinople testsAlex Beregszaszi2018-04-101-0/+2
| | | |
| * | | Run tests in constantinople mode tooAlex Beregszaszi2018-04-101-1/+8
| | | |
| * | | Add end to end tests for SHL/SHR/SAR instructions (constantinople only)Alex Beregszaszi2018-04-101-0/+129
| | | |
| * | | Add constant optimiser for SHR/SHL instructionsAlex Beregszaszi2018-04-102-0/+11
| | | |
* | | | Merge pull request #3859 from ethereum/fixerrorlineschriseth2018-04-112-512/+512
|\ \ \ \ | | | | | | | | | | Fix line numbers for errors.
| * | | | Fix line numbers for errors.chriseth2018-04-112-512/+512
|/ / / /
* | | | Merge pull request #3309 from ethereum/limit-errorschriseth2018-04-117-78/+1172
|\ \ \ \ | | | | | | | | | | Limit the number of errors output in a single run to 256
| * | | | Do not abort excessive warnings, just ignore them.Alex Beregszaszi2018-04-062-15/+38
| | | | |
| * | | | Ignore warnings when limited errors to 256Alex Beregszaszi2018-04-061-3/+10
| | | | |
| * | | | reindentAlex Beregszaszi2018-04-061-70/+69
| | | | |
| * | | | Catch FatalError in CompilerStack::analysis to cover all the analysis testsAlex Beregszaszi2018-04-062-11/+11
| | | | |
| * | | | Limit the number of errors output in a single run to 256Alex Beregszaszi2018-04-065-0/+1065
| | | | |
* | | | | Merge pull request #3799 from meowingtwurtle/fixLiteralComparisonschriseth2018-04-113-3/+11
|\ \ \ \ \ | | | | | | | | | | | | Fix bug in typechecking when comparing rational literals
| * | | | | Fix bug in typechecking when comparing rational literalsJason Cobb2018-04-113-3/+11
|/ / / / /
* | | | | Merge pull request #3842 from ethereum/syntaxTestsSourceLocationsDaniel Kirchner2018-04-1055-108/+216
|\ \ \ \ \ | | | | | | | | | | | | Add source locations to syntax test expectations.
| * | | | | Add source locations to syntax test expectations.Daniel Kirchner2018-04-1055-108/+216
|/ / / / /
* | | | | Merge pull request #3853 from ethereum/modifierStyleWithoutParenthesesDaniel Kirchner2018-04-109-21/+52
|\ \ \ \ \ | | | | | | | | | | | | Modifier style constructor calls without parentheses are an error.
| * | | | | Error when using no parentheses in modifier-style constructor calls.Daniel Kirchner2018-04-109-21/+52
| | | | | |
* | | | | | Merge pull request #3836 from netrunnerX/developchriseth2018-04-101-5/+4
|\ \ \ \ \ \ | |/ / / / / |/| | | | | Update solidity-by-example.rst.
| * | | | | Update solidity-by-example.rstNetX2018-04-091-5/+4
| | |_|/ / | |/| | |
* | | | | Merge pull request #3821 from ethereum/warn-constructor-overridechriseth2018-04-1017-59/+158
|\ \ \ \ \ | | | | | | | | | | | | Warn constructor override
| * | | | | Use the most derived contract as main location in case of diamond inheritance.Daniel Kirchner2018-04-091-3/+18
| | | | | |
| * | | | | Move constructor argument override check to TypeChecker and reuse ↵Daniel Kirchner2018-04-0915-100/+95
| | | | | | | | | | | | | | | | | | | | | | | | annotations in ContractCompiler.
| * | | | | Allow duplicated constructor calls, if no arguments; support for multiple ↵Daniel Kirchner2018-04-0910-26/+69
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | inheritance; backwards compatibility. # tmp
| * | | | | Error on duplicated super constructor callsFederico Bond2018-04-097-9/+55
| | |_|/ / | |/| | |
* | | | | Merge pull request #3852 from hydai/fix_typochriseth2018-04-101-6/+6
|\ \ \ \ \ | |/ / / / |/| | | | Fixed typos
| * | | | Fixed typoshydai2018-04-101-6/+6
|/ / / /
* | | | Merge pull request #3839 from ethereum/unusedVariableWarningOrderchriseth2018-04-073-8/+11
|\ \ \ \ | | | | | | | | | | Static Analyzer: Fix non-deterministic order of unused variable warni…
| * | | | Static Analyzer: Fix non-deterministic order of unused variable warnings.Daniel Kirchner2018-04-073-8/+11
| | |/ / | |/| |
* | | | Merge pull request #3609 from RobbieFerguson/patch-1chriseth2018-04-061-0/+7
|\ \ \ \ | | | | | | | | | | Update Delegatecall Description in Docs
| * | | | Update Delegatecall Description in DocsRobbie Ferguson2018-04-061-0/+7
|/ / / / | | | | | | | | | | | | The previous description did not include the fact that the storage locations of the two contracts must align up until the storage variable(s) affected in order for the called contract to successfully write to the caller's storage. If they are misaligned, delegatecall will silently fail. This is difficult to debug without underlying knowledge of how delegatecall works, and clarity in the docs would certainly be helpful.
* | | | Merge pull request #3832 from ethereum/commonSubexpressionEliminatorchriseth2018-04-063-0/+195
|\ \ \ \ | |/ / / |/| | | Common subexpression eliminator.
| * | | Common subexpression eliminator.chriseth2018-04-063-0/+195
| | | |
* | | | Merge pull request #3833 from ethereum/newEthBinarieschriseth2018-04-061-6/+6
|\ \ \ \ | |_|/ / |/| | | Use new eth binaries.
| * | | Use new eth binaries.chriseth2018-04-061-6/+6
| |/ /
* | | Merge pull request #3818 from ethereum/eth_dockerchriseth2018-04-061-3/+9
|\ \ \ | |/ / |/| | Add scripts to build the eth binary via docker.
| * | Fix trusty build script for eth.chriseth2018-04-051-3/+9
| | |
* | | Merge pull request #3831 from ethereum/memory-suffixchriseth2018-04-054-3/+16
|\ \ \ | | | | | | | | Allow ``memory`` suffix for internal elementary type parsing.
| * | | Allow ``memory`` suffix for internal elementary type parsing.chriseth2018-04-054-3/+16
| | | |
* | | | Merge pull request #3805 from kevinflo/tuple-documentation-var-removalchriseth2018-04-051-4/+6
|\ \ \ \ | | | | | | | | | | Removed documentation reference to var for tuple variable assignment
| * | | | Variable assignment wording changeKevin Florenzano2018-04-051-1/+1
| | | | |
| * | | | Removed documentation reference to the now-depricated var tuple variable ↵kevinflo2018-04-021-4/+6
| | | | | | | | | | | | | | | | | | | | assignment syntax
* | | | | Merge pull request #3829 from ethereum/smt_remove_ufchriseth2018-04-056-10/+20
|\ \ \ \ \ | |_|/ / / |/| | | | [SMTChecker] Remove usage of UFs to access SSA vars
| * | | | [SMTChecker] Removing usage of UFs to access SSA indicesLeonardo Alt2018-04-056-10/+20
| | | | |
* | | | | Merge pull request #3828 from ethereum/soltestchriseth2018-04-051-1/+3
|\ \ \ \ \ | | | | | | | | | | | | Show JSON error if jsonParseStrict failed in soltest
| * | | | | Show JSON error if jsonParseStrict failed in soltestAlex Beregszaszi2018-04-051-1/+3
| | | | | |
* | | | | | Merge pull request #3827 from ethereum/constantinoplechriseth2018-04-051-0/+2
|\ \ \ \ \ \ | | | | | | | | | | | | | | Support constantinople in soltest
| * | | | | | Support constantinople in soltestAlex Beregszaszi2018-04-051-0/+2
| |/ / / / /
* | | | | | Merge pull request #3826 from ethereum/document_aflAlex Beregszaszi2018-04-051-0/+51
|\ \ \ \ \ \ | | | | | | | | | | | | | | Document use of AFL.
| * | | | | | Document use of AFL.chriseth2018-04-051-0/+51
| | |/ / / / | |/| | | |
* | | | | | Merge pull request #3824 from ethereum/baseArgumentsEmptyParenthesisDaniel Kirchner2018-04-0510-36/+73
|\ \ \ \ \ \ | |/ / / / / |/| | | | | Error when using empty parentheses for base class constructors that r…
| * | | | | Error when using empty parenthesis for base class constructors that require ↵Daniel Kirchner2018-04-0510-36/+73
| | | | | | | | | | | | | | | | | | | | | | | | arguments.
* | | | | | Merge pull request #3745 from ethereum/fixRecursionAlex Beregszaszi2018-04-0519-155/+220
|\ \ \ \ \ \ | | | | | | | | | | | | | | Fix invalid recursion errors for structs
| * | | | | | Extract constant cycle tests.chriseth2018-04-035-32/+32
| | | | | | |
| * | | | | | Generalize cycle detection.chriseth2018-04-034-35/+104
| | | | | | |
| * | | | | | Fix detection of recursive structs.chriseth2018-04-034-0/+36
| | | | | | |
| * | | | | | Extract recursive struct tests.chriseth2018-04-038-93/+53
| | | | | | |
* | | | | | | Merge pull request #3822 from ethereum/swap-comparisonchriseth2018-04-054-6/+110
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Replace comparison operators with opposites if preceded by SWAP1
| * | | | | | | Add end-to-end test for SwapComparison and CommutativeSwap peephole optimisersAlex Beregszaszi2018-04-051-0/+44
| | | | | | | |
| * | | | | | | Replace comparison operators with opposites if preceded by SWAP1Alex Beregszaszi2018-04-043-6/+66
| | |_|/ / / / | |/| | | | |
* | | | | | | Merge pull request #3690 from ethereum/incrementArraySizeAlex Beregszaszi2018-04-056-15/+139
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | More specific push implementation.
| * | | | | | | More specific push implementation.chriseth2018-04-046-15/+139
| |/ / / / / /
* | | | | | | Merge pull request #3657 from ethereum/codingStylechriseth2018-04-052-2/+264
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | Use coding style.
| * | | | | | Update CODING_STYLE.mdchriseth2018-03-131-62/+70
| | | | | | |
| * | | | | | Use coding style.chriseth2018-03-062-2/+256
| | | | | | |
* | | | | | | Merge pull request #3820 from ethereum/chriseth-patch-1chriseth2018-04-041-1/+7
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Clarify code state of contracts under construction.
| * | | | | | | Clarify code state of contracts under construction.chriseth2018-04-041-1/+7
|/ / / / / / /
* | | | | | | Merge pull request #3808 from ethereum/parserTestschriseth2018-04-048-145/+113
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | SyntaxTests: extend syntax tests and isoltest to support parser error…
| * | | | | | | Adds parsing sub-directory in syntaxTests and moves two example tests from ↵Daniel Kirchner2018-04-043-20/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | SolidityParser.cpp to test contracts.
| * | | | | | | SyntaxTests: extend syntax tests and isoltest to support parser errors and ↵Daniel Kirchner2018-04-045-125/+104
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | compiler exceptions.
* | | | | | | | Merge pull request #3721 from ethereum/simpleDynArraychriseth2018-04-048-20/+107
|\ \ \ \ \ \ \ \ | |_|_|_|_|_|/ / |/| | | | | | | Create empty dynamic memory arrays more efficiently.
| * | | | | | | Create empty dynamic memory arrays more efficiently.chriseth2018-04-048-20/+107
| | |_|_|/ / / | |/| | | | |
* | | | | | | Merge pull request #3817 from ethereum/eth_dockerAlex Beregszaszi2018-04-043-0/+31
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | Add scripts to build the eth binary via docker.
| * | | | | | Add scripts to build the eth binary via docker.chriseth2018-04-043-0/+31
|/ / / / / /
* | | | | | Merge pull request #3814 from FrolovR/patch-2Alex Beregszaszi2018-04-041-1/+1
|\ \ \ \ \ \ | | | | | | | | | | | | | | hash256 -> bytes32 fix in misleading note
| * | | | | | hash256 -> bytes32 fix in misleading noteRoman2018-04-041-1/+1
| | | | | | | | | | | | | | | | | | | | | As it was described here: https://ethereum.stackexchange.com/questions/44628/understanding-low-level-interface-to-logs/44629?noredirect=1#comment52316_44629
* | | | | | | Merge pull request #3798 from ethereum/commutative-swapAlex Beregszaszi2018-04-043-1/+97
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | Remove useless SWAP1 in front of commutative operations
| * | | | | | Test multiple instructions with the (non)commutative peephole optimiserAlex Beregszaszi2018-04-041-37/+62
| | | | | | |
| * | | | | | Remove useless SWAP1 in front of commutative operationsAlex Beregszaszi2018-04-043-1/+72
| | |_|_|_|/ | |/| | | |
* | | | | | Merge pull request #3635 from ethereum/constructor-modifierAlex Beregszaszi2018-04-0411-27/+118
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | Constructors are defined using the ``constructor`` keyword.
| * | | | | Document absence of constructors.Daniel Kirchner2018-04-041-1/+3
| | | | | |
| * | | | | Set isConstructor to false unconditionally and update to true later for ↵Daniel Kirchner2018-04-041-6/+4
| | | | | | | | | | | | | | | | | | | | | | | | constructors.
| * | | | | Set header.isConstructor for old style constructors in parseFunctionHeader ↵Daniel Kirchner2018-04-042-6/+16
| | | | | | | | | | | | | | | | | | | | | | | | as well.
| * | | | | Update version pragma and use new constructor syntax in std/ contracts.Daniel Kirchner2018-04-043-7/+7
| | | | | |
| * | | | | Remove redundant test and enforce success without warnings.Daniel Kirchner2018-04-041-7/+1
| | | | | |
| * | | | | Updates docs to new constructor syntax.bitshift2018-04-041-6/+26
| | | | | |
| * | | | | Constructors are defined using the ``constructor`` keyword.Daniel Kirchner2018-04-048-13/+80
| |/ / / /
* | | | | Merge pull request #3809 from ethereum/build_on_tagsAlex Beregszaszi2018-04-041-3/+13
|\ \ \ \ \ | |/ / / / |/| | | | Build on tag in Circle.
| * | | | Build on tag in Circle.chriseth2018-04-031-3/+13
| | | | |
* | | | | Merge pull request #3693 from ethereum/optimizeMLOADAlex Beregszaszi2018-04-0312-42/+148
|\ \ \ \ \ | |_|_|/ / |/| | | | Optimize across MLOAD if MSIZE is not used.
| * | | | Changelog entry.chriseth2018-04-031-0/+2
| | | | |
| * | | | Add memory array init test.chriseth2018-04-031-0/+26
| | | | |
| * | | | Test number of sstore operations.chriseth2018-04-031-7/+33
| | | | |
| * | | | Optimize across MLOAD if MSIZE is not used.chriseth2018-04-0310-35/+87
| |/ / /
* | | | Merge pull request #3699 from ethereum/interfaceExternalVisibilityAlex Beregszaszi2018-04-0310-60/+52
|\ \ \ \ | | | | | | | | | | Defaults to external visibility for interfaces.
| * | | | Makes visibility warning more concise.Erik Kundt2018-04-032-3/+5
| | | | |
| * | | | Moves all interface function visibility related tests.Erik Kundt2018-04-036-48/+26
| | | | |
| * | | | Defaults to external visibility for interfaces.bitshift2018-04-034-12/+24
| | | | |
* | | | | Merge pull request #3757 from ethereum/fixEmptyBaseArgumentsAlex Beregszaszi2018-04-034-3/+22
|\ \ \ \ \ | |_|/ / / |/| | | | Fix: Treat empty base constructor argument list as not provided.
| * | | | Fix: Treat empty base constructor argument list as not provided.chriseth2018-04-034-3/+22
|/ / / /
* | | | Merge pull request #3801 from meowingtwurtle/preFixedPointchriseth2018-04-034-11/+11
|\ \ \ \ | | | | | | | | | | Set default fixed point decimal places to 18
| * | | | Set default fixed point decimal places to 18Jason Cobb2018-03-314-11/+11
| | |_|/ | |/| |
* | | | Merge pull request #3803 from ethereum/homebrewchriseth2018-04-031-1/+0
|\ \ \ \ | | | | | | | | | | Remove brew linkapps from the installation instructions
| * | | | Remove brew linkapps from the installation instructionsAlex Beregszaszi2018-03-311-1/+0
| |/ / /
* | | | Merge pull request #3807 from haoliangyu/patch-1chriseth2018-04-031-1/+1
|\ \ \ \ | |/ / / |/| | | Fix a wrong number in the documentation
| * | | fix a wrong numberHaoliang Yu2018-04-031-1/+1
|/ / /
* | | Merge pull request #3802 from ethereum/empty-structsAlex Beregszaszi2018-03-312-0/+2
|\ \ \ | | | | | | | | Update tests for empty structs
| * | | Update tests for empty structsAlex Beregszaszi2018-03-312-0/+2
|/ / /
* | | Merge pull request #3800 from wbt/patch-2Alex Beregszaszi2018-03-311-1/+1
|\ \ \ | | | | | | | | Fix small formatting issue
| * | | Fix small formatting issuewbt2018-03-311-1/+1
|/ / / | | | | | | in which a constant was not treated as code, inconsistent with surrounding examples.
* | | Merge pull request #3790 from ethereum/empty-structschriseth2018-03-307-2/+30
|\ \ \ | | | | | | | | Disallow empty structs
| * | | Still allow empty structs for non-0.5.0 modeAlex Beregszaszi2018-03-274-3/+16
| | | |
| * | | Disallow empty structsAlex Beregszaszi2018-03-276-2/+17
| | | |
* | | | Merge pull request #3753 from ethereum/whoSupportsPackedEncodingAlex Beregszaszi2018-03-2911-4/+110
|\ \ \ \ | | | | | | | | | | Prevent encoding of weird types and support packed encoding of extenal function types.
| * | | | Prevent encoding of weird types and support packed encoding of external ↵chriseth2018-03-2911-4/+110
|/ / / / | | | | | | | | | | | | function types.
* | | | Merge pull request #3754 from AnthonyBroadCrawford/error-on-missing-fileAlex Beregszaszi2018-03-294-7/+29
|\ \ \ \ | |_|/ / |/| | | Error on non existing or irregular files
| * | | Support for error on non-existant or irregular files with command line ↵Anthony Broad-Crawford2018-03-284-7/+29
|/ / / | | | | | | | | | option to ignore
* | | Merge pull request #3775 from federicobond/improve-error-fractional-shiftchriseth2018-03-283-1/+12
|\ \ \ | |/ / |/| | Improve error message when attempting to shift by fractional number
| * | Improve error message when trying to shift by fractional numberFederico Bond2018-03-223-1/+12
| | |
* | | Merge pull request #3681 from ethereum/interface-externalchriseth2018-03-275-0/+33
|\ \ \ | | | | | | | | Allow overriding external functions in interfaces with public in a child
| * | | Introduce inContractKind helper on FunctionDefinitionAlex Beregszaszi2018-03-263-11/+14
| | | |
| * | | Allow overriding external functions in interfaces with public in an ↵Alex Beregszaszi2018-03-263-0/+30
| |/ / | | | | | | | | | implementing contract
* | | Merge pull request #3772 from ethereum/docsTestingGuideAlex Beregszaszi2018-03-271-0/+79
|\ \ \ | | | | | | | | Add syntax testing guide to docs
| * | | Explains test structure and update mechanism more detailed.Erik Kundt2018-03-271-3/+20
| | | |
| * | | Updates "How to contribute"Erik Kundt2018-03-221-0/+62
| | | | | | | | | | | | Adds detailed description of the new syntax test tool.
* | | | Merge pull request #3686 from ethereum/doNotIncludeItnernalchriseth2018-03-275-6/+89
|\ \ \ \ | | | | | | | | | | Do not include internal functions only used by constructor
| * | | | Add runtimeOnly option to pushCombinedFunctionEntryLabelAlex Beregszaszi2018-03-273-8/+8
| | | | |
| * | | | Changelog entry.chriseth2018-03-271-0/+1
| | | | |
| * | | | Use shortcut for internal function calls to avoid runtime reference.chriseth2018-03-271-1/+23
| | | | |
| * | | | Test that internal functions only used by constructor are not included in ↵chriseth2018-03-271-0/+60
| | |/ / | |/| | | | | | | | | | runtime context.
* | | | Merge pull request #3748 from ethereum/extractScopingTestschriseth2018-03-2718-223/+179
|\ \ \ \ | | | | | | | | | | Extract scoping tests
| * | | | Extract scoping tests.chriseth2018-03-1617-223/+130
| | | | |
| * | | | Test extraction tool.chriseth2018-03-161-0/+49
| | | | |
* | | | | Merge pull request #3646 from ethereum/blockhash-globalAlex Beregszaszi2018-03-278-14/+105
|\ \ \ \ \ | |_|/ / / |/| | | | Move blockhash from block.blockhash to global level.
| * | | | Changes deprecation and adjusts tests.bitshift2018-03-275-59/+76
| | | | |
| * | | | Updates docs for blockhash changes.bitshift2018-03-272-3/+21
| | | | |
| * | | | Adds unit tests for moved function.bitshift2018-03-274-5/+49
| | | | |
| * | | | Moves blockhash function to global level.bitshift2018-03-272-9/+21
|/ / / /
* | | | Merge pull request #3746 from ethereum/disableCCachechriseth2018-03-221-17/+1
|\ \ \ \ | | | | | | | | | | Disable ccache
| * | | | Remove ccache on circle.chriseth2018-03-161-17/+1
| |/ / /
* | | | Merge pull request #3308 from ethereum/usereturndatacopychriseth2018-03-2212-142/+361
|\ \ \ \ | | | | | | | | | | Use returndatacopy for retrieving dynamically sized outputs.
| * | | | Changelog entry.chriseth2018-03-211-0/+1
| | | | |
| * | | | Tests for returning dynamic data.chriseth2018-03-212-6/+104
| | | | |
| * | | | Decode dynamic data.chriseth2018-03-215-18/+53
| | | | |
| * | | | Move dynamic type removal out of the type system.chriseth2018-03-214-18/+37
| | | | |
| * | | | Simple size check for old ABI decoder.chriseth2018-03-213-32/+97
| | | | |
| * | | | Move the old ABI decoder code.chriseth2018-03-204-105/+106
| | |/ / | |/| |
* | | | Merge pull request #3744 from ethereum/useUsrBinEditorAlex Beregszaszi2018-03-211-0/+2
|\ \ \ \ | | | | | | | | | | Use /usr/bin/editor if exists.
| * | | | Use /usr/bin/editor if exists.chriseth2018-03-161-0/+2
| | |/ / | |/| |
* | | | Merge pull request #3763 from mattaereal/patch-1chriseth2018-03-211-0/+1
|\ \ \ \ | |_|/ / |/| | | Fix: Missing payable at function forceOwnerChange
| * | | Fix: Missing payable at function forceOwnerChangeMatías A. Ré Medina2018-03-201-0/+1
|/ / / | | | | | | forceOwnerChange expects ether, and does not have the payable keyword.
* | | Merge pull request #3751 from ethereum/syntaxTestsExtensionschriseth2018-03-163-2/+13
|\ \ \ | |/ / |/| | Only consider files ending with .sol and not starting with ~ in synta…
| * | Only consider files ending with .sol and not starting with ~ in syntax tests.Daniel Kirchner2018-03-163-2/+13
|/ /
* | Merge pull request #3709 from ethereum/syntaxTestsInteractiveToolchriseth2018-03-168-16/+536
|\ \ | | | | | | Interactive syntax test tool.
| * | Only colour error type, not error message in isoltest.Daniel Kirchner2018-03-151-10/+16
| | |
| * | Add interactive test tool isoltest.Daniel Kirchner2018-03-155-0/+407
| | |
| * | Add formatted printing to SyntaxTest and expand its public interface.Daniel Kirchner2018-03-153-16/+123
| | |
* | | Merge pull request #3740 from DanielMReed/patch-1chriseth2018-03-151-1/+1
|\ \ \ | | | | | | | | Fix Typo in changelog.md
| * | | Fix Typo in changelog.mdDaniel R2018-03-151-1/+1
|/ / /
* | | Merge pull request #3614 from ethereum/notestsOnTravisAlex Beregszaszi2018-03-151-0/+1
|\ \ \ | |/ / |/| | Disable tests for travis on non-release and non-tag branches.
| * | Disable tests for travis on non-release and non-tag branches.chriseth2018-02-271-0/+1
| | |
* | | Merge pull request #3724 from ethereum/externalFunctionsInLibrarieschriseth2018-03-155-3/+34
|\ \ \ | | | | | | | | Make external library functions accessible.
| * \ \ Merge branch 'develop' into externalFunctionsInLibrarieschriseth2018-03-1543-48/+213
| |\ \ \ | |/ / / |/| | |
* | | | Merge pull request #3734 from ethereum/soltestOptionschriseth2018-03-1533-39/+51
|\ \ \ \ | | | | | | | | | | test: Rename test/TestHelper.* to test/Options.* and add Options::val…
| * | | | test: Rename test/TestHelper.* to test/Options.* and add Options::validate().Daniel Kirchner2018-03-1433-39/+51
| | | | |
* | | | | Merge pull request #3725 from ethereum/blockhashNoCallchriseth2018-03-153-0/+21
|\ \ \ \ \ | | | | | | | | | | | | Allow ``block.blockhash`` without it being called.
| * | | | | Allow ``block.blockhash`` without being called.chriseth2018-03-143-0/+21
| | | | | |
* | | | | | Merge pull request #3722 from ethereum/fixModsAlex Beregszaszi2018-03-156-5/+83
|\ \ \ \ \ \ | | | | | | | | | | | | | | Fix modifier lookup in libraries.
| * | | | | | Tests.chriseth2018-03-131-0/+52
| | | | | | |
| * | | | | | Changelog entry.chriseth2018-03-132-0/+15
| | | | | | |
| * | | | | | Bugfix in virtual lookup for modifiers in libraries.chriseth2018-03-133-5/+16
| | | | | | |
* | | | | | | Merge pull request #3730 from ethereum/docstringBugchriseth2018-03-143-7/+10
|\ \ \ \ \ \ \ | |_|_|/ / / / |/| | | | | | DocStringParser: Fix error message for empty parameter description.
| * | | | | | DocStringParser: Add Changelog entry and test case for empty descriptions.Daniel Kirchner2018-03-142-0/+7
| | | | | | |
| * | | | | | DocStringParser: Fix error message for empty parameter description.Daniel Kirchner2018-03-141-7/+3
| | | | | | |
* | | | | | | Merge pull request #3731 from ethereum/errorNoTestPathchriseth2018-03-141-0/+4
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | soltest: force the use of the --testpath option for soltest with an e…
| * | | | | | soltest: force the use of the --testpath option for soltest with an explicit ↵Daniel Kirchner2018-03-141-0/+4
|/ / / / / / | | | | | | | | | | | | | | | | | | error.
* | | | | | Merge pull request #3726 from ethereum/syntaxTestsFilenameFixchriseth2018-03-141-1/+5
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | Store filenames in static variable to guarantee sufficient lifetime.
| * | | | | Store filenames in static variable to guarantee sufficient lifetime.Daniel Kirchner2018-03-141-1/+5
|/ / / / /
* | | | | Merge pull request #3719 from ethereum/soltestScriptchriseth2018-03-141-0/+43
|\ \ \ \ \ | |/ / / / |/| | | | Add soltest.sh script that invokes soltest with the correct --testpath.
| * | | | Add soltest.sh script that invokes soltest with the correct --testpath.Daniel Kirchner2018-03-131-0/+43
| | | | |
| | * | | Make external library functions accessible.chriseth2018-03-145-2/+33
| |/ / / |/| | |
* | | | Merge pull request #3720 from yosyp/developchriseth2018-03-131-1/+1
|\ \ \ \ | |/ / / |/| | | Updated link for "try Solidity in your browser"
| * | | Updated link for "try Solidity in your browser"Yosyp Schwab2018-03-131-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Previous link leads to a page with a model warning: _The Remix IDE has moved to http://remix.ethereum.org. This instance of Remix you are visiting WILL NOT BE UPDATED. Please make a backup of your contracts and start using http://remix.ethereum.org_ Updated link to point to http://remix.ethereum.org
* | | | Merge pull request #3707 from ethereum/syntaxTestsTestRunnerchriseth2018-03-1314-59/+348
|\ \ \ \ | | | | | | | | | | Infrastructure for extracting syntax tests.
| * | | | Minor adjustments.Daniel Kirchner2018-03-131-4/+4
| | | | |
| * | | | Refactoring; fuse SyntaxTestParser and SyntaxTester to SyntaxTest.Daniel Kirchner2018-03-138-314/+258
| | | | |
| * | | | Workaround for boost < 1.59.0Daniel Kirchner2018-03-131-0/+13
| | | | |
| * | | | Infrastructure for extracting syntax tests in separate test files.Daniel Kirchner2018-03-1315-55/+387
|/ / / /
* | | | Merge pull request #3647 from leonardoalt/smt_boolchriseth2018-03-1311-36/+318
|\ \ \ \ | |/ / / |/| | | [SMTChecker] Support to Bool variables
| * | | [SMTChecker_Bool] Fix PR review comments: method renaming and solAssertLeonardo Alt2018-03-133-16/+17
| | | |
| * | | [SMTChecker_Bool] Fix PR comments; Add support to gt, ge, lt, le. and tests.Leonardo Alt2018-03-1311-41/+125
| | | |
| * | | [SMTChecker] Support to Bool variablesLeonardo Alt2018-03-137-8/+205
|/ / /
* | | Merge pull request #3708 from ethereum/moveTestToolschriseth2018-03-136-10/+30
|\ \ \ | | | | | | | | Move test tools to the subdirectory test/tools and adjust CMakeLists
| * | | Move test tools to the subdirectory test/tools and adjust CMakeLists.txt.Daniel Kirchner2018-03-136-10/+30
| | | |
* | | | Merge pull request #3713 from ethereum/version-constantinoplechriseth2018-03-133-4/+5
|\ \ \ \ | | | | | | | | | | Support constantinople in evm-version
| * | | | Support constantinople in evm-versionAlex Beregszaszi2018-03-133-4/+5
|/ / / /
* | | | Merge pull request #3706 from ethereum/releaseStepDocsAlex Beregszaszi2018-03-121-0/+1
|\ \ \ \ | | | | | | | | | | New release step.
| * | | | New release step.chriseth2018-03-121-0/+1
| |/ / /
* | | | Merge pull request #3702 from solidity-korea/developchriseth2018-03-121-0/+1
|\ \ \ \ | | | | | | | | | | Add Korean to Translations
| * | | | Add Korean to Translationdongsamb2018-03-101-0/+1
| | | | |
* | | | | Noted `suicide` is deprecated (#3692)wbt2018-03-122-2/+2
| | | | | | | | | | | | | | | According to the [changelog](https://github.com/ethereum/solidity/blob/b5e804b8caba0cc84514898323df91a025705177/Changelog.md), `suicide` was deprecated before 0.4.3 (after 0.2.0) and warning by 0.4.17.
* | | | | Merge pull request #3697 from ethereum/fixAvoidStorageClearLoopAlex Beregszaszi2018-03-122-2/+3
|\ \ \ \ \ | |_|/ / / |/| | | | Properly skip cleanup if only enlarging storage array.
| * | | | Properly skip cleanup if only enlarging storage array.chriseth2018-03-092-2/+3
|/ / / /
* | | | Merge pull request #3683 from grzegorzszczecin/fix_docchriseth2018-03-081-1/+1
|\ \ \ \ | | | | | | | | | | Fix a typo.
| * | | | Fix a typo.Grzegorz Hasse2018-03-081-1/+1
| | | | |
* | | | | Merge pull request #3685 from ethereum/releasechriseth2018-03-080-0/+0
|\ \ \ \ \ | |/ / / / |/| | | | Merge release back into develop.
| * | | | Merge pull request #3678 from ethereum/developchriseth2018-03-08144-1226/+4718
| |\ \ \ \ | | | | | | | | | | | | Merge develop into release.
* | \ \ \ \ Merge pull request #3679 from ethereum/updateVersionchriseth2018-03-082-1/+10
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | Set version to 0.4.22.
| * | | | | Set version to 0.4.22.chriseth2018-03-082-1/+10
|/ / / / /
* | | | | Merge pull request #3677 from ethereum/prepareForReleasechriseth2018-03-082-4/+8
|\ \ \ \ \ | | | | | | | | | | | | Update changelog for release.
| * | | | | Update changelog for release.chriseth2018-03-082-4/+8
|/ / / / /
* | | | | Merge pull request #3634 from ethereum/useCorrectVersionForEmitchriseth2018-03-084-6/+6
|\ \ \ \ \ | | | | | | | | | | | | Use 0.4.21 pragma for documentation that uses "emit".
| * | | | | Use 0.4.21 pragma for documentation that uses "emit".chriseth2018-03-024-6/+6
| | |/ / / | |/| | |
* | | | | Merge pull request #3661 from ethereum/chriseth-patch-1Alex Beregszaszi2018-03-071-1/+1
|\ \ \ \ \ | | | | | | | | | | | | Update Changelog.md
| * | | | | Clarify that the experimental flag is not set for "experimental 0.5.0"chriseth2018-03-071-1/+1
|/ / / / /
* | | | | Merge pull request #3668 from ethereum/fixExperimentalTestchriseth2018-03-071-1/+1
|\ \ \ \ \ | | | | | | | | | | | | Fix test.
| * | | | | Fix test.chriseth2018-03-071-1/+1
|/ / / / /
* | | | | Some words on Remixankit raj2018-03-071-1/+3
| | | | |
* | | | | Merge pull request #3611 from ethereum/warn-using-address-overloadAlex Beregszaszi2018-03-074-11/+185
|\ \ \ \ \ | | | | | | | | | | | | Warn if using address overloads on contracts
| * | | | | Assert that address members are not present on contract types in 0.5.0.chriseth2018-03-051-0/+4
| | | | | |
| * | | | | Warn if using address overloads on contractsAlex Beregszaszi2018-03-054-11/+181
| | | | | |
* | | | | | Merge pull request #3664 from ethereum/literalsHexUnitSmallFixchriseth2018-03-071-2/+2
|\ \ \ \ \ \ | | | | | | | | | | | | | | Use double quotes for suggestion about hex literals and denominations.