Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #4496 from ethereum/faq-reorg-contracts | chriseth | 2018-08-15 | 2 | -39/+54 |
|\ | | | | | Move contract related FAQ points | ||||
| * | Move contract related FAQ points | Chris Ward | 2018-08-15 | 2 | -39/+54 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updates from feedback Changes from feedback Further changes from review Changes from review Changes from review Changes from review | ||||
* | | Merge pull request #4390 from ethereum/abidecode | chriseth | 2018-08-15 | 18 | -8/+384 |
|\ \ | | | | | | | Add abi.decode | ||||
| * | | Changelog entry. | chriseth | 2018-08-15 | 1 | -0/+1 |
| | | | |||||
| * | | Documentation. | chriseth | 2018-08-15 | 2 | -2/+4 |
| | | | |||||
| * | | Add abi.decode(bytes data, (...)) | chriseth | 2018-08-15 | 15 | -6/+379 |
| | | | |||||
* | | | Merge pull request #4583 from ethereum/nested_array_library_changelog | chriseth | 2018-08-15 | 6 | -4/+187 |
|\ \ \ | | | | | | | | | Bugfix Changelog entry regarding nested arrays returned by library functions | ||||
| * | | | Update bug list and add regular expression to bug list and add test. | Leonardo Alt | 2018-08-14 | 6 | -16/+176 |
| | | | | |||||
| * | | | Bugfix entry regarding nested arrays returned by library functions | Leonardo Alt | 2018-08-14 | 2 | -4/+27 |
| | | | | |||||
* | | | | Merge pull request #4797 from bakaoh/issue4718 | chriseth | 2018-08-15 | 7 | -4/+27 |
|\ \ \ \ | |_|/ / |/| | | | Fixes #4718: High CPU usage when using large variable names | ||||
| * | | | Fixes #4718: High CPU usage when using large variable names | bakaoh | 2018-08-15 | 7 | -4/+27 |
| | | | | |||||
* | | | | Merge pull request #4817 from crypto-jeronimo/fix-typo-in-docs | chriseth | 2018-08-15 | 1 | -1/+1 |
|\ \ \ \ | | | | | | | | | | | Fix typo in documentation. | ||||
| * | | | | Fix typo in documentation. | Crypto Jerônimo | 2018-08-15 | 1 | -1/+1 |
| |/ / / | |||||
* | | | | Merge pull request #4815 from gftea/develop | chriseth | 2018-08-15 | 1 | -3/+14 |
|\ \ \ \ | |/ / / |/| | | | multiple inheritance in solidity search from right-to-left, different from python | ||||
| * | | | clarify multiple inheritance in solidity and its differences against to python | Simon Chen | 2018-08-15 | 1 | -3/+14 |
| | | | | |||||
* | | | | Merge pull request #4816 from ethereum/typeConversionDoc | chriseth | 2018-08-15 | 2 | -11/+103 |
|\ \ \ \ | | | | | | | | | | | Extend documentation about conversions between integers, bytes and literal types. | ||||
| * | | | | Extend documentation about explicit and implicit conversions between ↵ | Daniel Kirchner | 2018-08-15 | 2 | -11/+103 |
|/ / / / | | | | | | | | | | | | | (u)intXX, bytesYY and literals. | ||||
* | | | | Merge pull request #4738 from ethereum/dataloc_merged | chriseth | 2018-08-15 | 90 | -310/+586 |
|\ \ \ \ | | | | | | | | | | | Enforce data location. | ||||
| * | | | | Make joinHumanReadable work for input iterators. | chriseth | 2018-08-15 | 1 | -16/+12 |
| | | | | | |||||
| * | | | | Update external tests. | chriseth | 2018-08-15 | 9 | -23/+23 |
| | | | | | |||||
| * | | | | Update tests. | chriseth | 2018-08-15 | 62 | -113/+179 |
| | | | | | |||||
| * | | | | New test cases. | mingchuan | 2018-08-15 | 20 | -0/+126 |
| | | | | | |||||
| * | | | | Update tests | Chase McDermott | 2018-08-15 | 8 | -39/+39 |
| | | | | | |||||
| * | | | | Update documentation. | chriseth | 2018-08-15 | 3 | -37/+36 |
| | | | | | |||||
| * | | | | Refactor data location check. | Chase McDermott | 2018-08-15 | 6 | -131/+220 |
| | | | | | |||||
* | | | | | Merge pull request #4542 from aarlt/constructor_natspec | chriseth | 2018-08-15 | 5 | -27/+216 |
|\ \ \ \ \ | |/ / / / |/| | | | | Fix: natspec annotations on constructors | ||||
| * | | | | Fix: natspec annotations on constructors | Alexander Arlt | 2018-08-09 | 5 | -27/+216 |
| | | | | | | | | | | | | | | | | | | | | - natspec annotations on constructore where ignored. | ||||
* | | | | | Merge pull request #4776 from ethereum/const-opt-cost | chriseth | 2018-08-14 | 3 | -3/+3 |
|\ \ \ \ \ | | | | | | | | | | | | | Calculate the dataGas correctly in the constant optimiser | ||||
| * | | | | | Calculate the dataGas correctly in the constant optimiser | Alex Beregszaszi | 2018-08-14 | 3 | -3/+3 |
|/ / / / / | | | | | | | | | | | | | | | | | | | | | This may cause a wrong decision about cost (and as a result choosing the least efficient code), but will not cause any miscompilation or invalid output. | ||||
* | | | | | Merge pull request #4765 from ethereum/fixes-issue-4673 | chriseth | 2018-08-14 | 4 | -2/+9 |
|\ \ \ \ \ | | | | | | | | | | | | | [WIP] Fixes issue where computing storage size for a number would take too long (or even cause a crash). | ||||
| * | | | | | Fixes issue where computing storage size for a number would take too long. | Christian Parpart | 2018-08-14 | 4 | -2/+9 |
| | | | | | | | | | | | | | | | | | | | | | | | | Fixes #4673. | ||||
* | | | | | | Merge pull request #4372 from JesseBusman/implicit-convertibility-functions | chriseth | 2018-08-14 | 7 | -23/+263 |
|\ \ \ \ \ \ | | | | | | | | | | | | | | | Add implicit convertibility to function pointer with higher state mutability | ||||
| * | | | | | | Add implicit convertibility to function pointer with higher state mutability | Jesse Busman | 2018-08-14 | 7 | -23/+263 |
| | | | | | | | |||||
* | | | | | | | Merge pull request #4780 from ethereum/enumData | chriseth | 2018-08-14 | 1 | -1/+5 |
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | Clarify data representation of enums. | ||||
| * | | | | | | | Clarify data representation of enums. | chriseth | 2018-08-14 | 1 | -1/+5 |
| | | | | | | | | |||||
* | | | | | | | | Merge pull request #4787 from ethereum/updateLinks | chriseth | 2018-08-14 | 1 | -27/+41 |
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | | | Update links | ||||
| * | | | | | | | Re-group links. | chriseth | 2018-08-09 | 1 | -24/+37 |
| | | | | | | | | |||||
| * | | | | | | | Update links and deprecated unmaintained tools. | chriseth | 2018-08-09 | 1 | -3/+4 |
| | | | | | | | | |||||
* | | | | | | | | Merge pull request #4792 from ethereum/someABIDocFixes | chriseth | 2018-08-14 | 1 | -48/+56 |
|\ \ \ \ \ \ \ \ | |_|/ / / / / / |/| | | | | | | | Some style fixes to the ABI documentation. | ||||
| * | | | | | | | Some style fixes to the ABI documentation. | chriseth | 2018-08-10 | 1 | -48/+56 |
| | | | | | | | | |||||
* | | | | | | | | Merge pull request #4788 from ethereum/noWarnDoc | chriseth | 2018-08-14 | 13 | -180/+262 |
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | Test that documentation does not contain any warnings. | ||||
| * | | | | | | | | Update documentation. | chriseth | 2018-08-14 | 4 | -39/+100 |
| | | | | | | | | | |||||
| * | | | | | | | | Also extract tests that do not start with a pragma. | chriseth | 2018-08-14 | 2 | -24/+25 |
| | | | | | | | | | |||||
| * | | | | | | | | Update documentation examples. | chriseth | 2018-08-14 | 10 | -86/+99 |
| | | | | | | | | | |||||
| * | | | | | | | | Test that documentation does not contain any warnings. | chriseth | 2018-08-14 | 2 | -37/+44 |
| | |_|_|_|_|/ / | |/| | | | | | | |||||
* | | | | | | | | Merge pull request #4782 from ethereum/encodePackedArrayOfStructs | chriseth | 2018-08-14 | 4 | -10/+30 |
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | Encode packed array of structs | ||||
| * | | | | | | | | Changelog entry. | chriseth | 2018-08-10 | 1 | -0/+1 |
| | | | | | | | | | |||||
| * | | | | | | | | Tests. | chriseth | 2018-08-10 | 2 | -0/+19 |
| | | | | | | | | | |||||
| * | | | | | | | | Disallow packed encoding of arrays of structs. | chriseth | 2018-08-10 | 1 | -10/+10 |
| | |/ / / / / / | |/| | | | | | | |||||
* | | | | | | | | Merge pull request #4796 from ethereum/structs-in-interfaces | chriseth | 2018-08-14 | 5 | -7/+72 |
|\ \ \ \ \ \ \ \ | |_|/ / / / / / |/| | | | | | | | [BREAKING] Adds support for structs in interfaces. | ||||
| * | | | | | | | Adds support for structs in interfaces. | Christian Parpart | 2018-08-14 | 5 | -7/+72 |
|/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | Closes #4733. | ||||
* | | | | | | | Merge pull request #4813 from ethereum/replace_safety_stop | chriseth | 2018-08-14 | 4 | -8/+8 |
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | Replace safety stop by invalid | ||||
| * | | | | | | | Replace safety stop by invalid | Leonardo Alt | 2018-08-14 | 4 | -8/+8 |
|/ / / / / / / | |||||
* | | | | | | | Merge pull request #4799 from ethereum/semanticsTestsGasEtAl | chriseth | 2018-08-14 | 5 | -0/+122 |
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | Semantics tests for ``gasleft()``, ``blockhash()`` ``tx.gasprice`` and ``block.gaslimit`` | ||||
| * | | | | | | | Fix tests for constantinople (expect zero for the time being). | Daniel Kirchner | 2018-08-14 | 1 | -9/+22 |
| | | | | | | | | |||||
| * | | | | | | | Add missing tests for ``gasleft()``, ``blockhash()`` ``tx.gasprice`` and ↵ | Daniel Kirchner | 2018-08-14 | 5 | -0/+109 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ``block.gaslimit``. | ||||
* | | | | | | | | Merge pull request #4777 from ethereum/typeConversionMemory | chriseth | 2018-08-14 | 5 | -5/+14 |
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | | | Defaul data location for type conversions is memory. | ||||
| * | | | | | | | Defaul data location for type conversions is memory. | chriseth | 2018-08-13 | 5 | -5/+14 |
| | | | | | | | | |||||
* | | | | | | | | Merge pull request #4798 from ethereum/mappingArgumentsAndReturns | chriseth | 2018-08-13 | 36 | -7/+438 |
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | Mapping arguments and returns | ||||
| * | | | | | | | | Add tests for mappings in function types. | Daniel Kirchner | 2018-08-13 | 4 | -0/+20 |
| | | | | | | | | | |||||
| * | | | | | | | | Allow mappings of arrays as arguments and return values of internal functions. | Daniel Kirchner | 2018-08-13 | 13 | -4/+101 |
| | | | | | | | | | |||||
| * | | | | | | | | Consider mappings return values in control flow analysis. | Daniel Kirchner | 2018-08-13 | 6 | -1/+25 |
| | | | | | | | | | |||||
| * | | | | | | | | Allow mapping arguments and return values in all internal functions. | Daniel Kirchner | 2018-08-13 | 6 | -11/+57 |
| | | | | | | | | | |||||
| * | | | | | | | | Allow mapping arguments and return values in internal library functions. | Daniel Kirchner | 2018-08-13 | 15 | -1/+245 |
| |/ / / / / / / | |||||
* | | | | | | | | Merge pull request #4696 from ethereum/byteLiteralConversion | chriseth | 2018-08-13 | 26 | -126/+316 |
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | Disallow ambiguous implicit and explicit conversions from number literals to bytesXX | ||||
| * | | | | | | | | Disallow ambiguous conversions between number literals and bytesXX types. | Daniel Kirchner | 2018-08-13 | 26 | -126/+316 |
| | |_|_|/ / / / | |/| | | | | | | |||||
* | | | | | | | | Merge pull request #4618 from ethereum/docs-1211-contract-type | chriseth | 2018-08-13 | 1 | -10/+23 |
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | Add contract type to types documentation | ||||
| * | | | | | | | | Update from feedback | Chris Ward | 2018-08-13 | 1 | -3/+6 |
| | | | | | | | | | |||||
| * | | | | | | | | Remove initial sentence. | chriseth | 2018-08-06 | 1 | -8/+5 |
| | | | | | | | | | |||||
| * | | | | | | | | Changes after rebasing | Chris Ward | 2018-08-01 | 1 | -12/+18 |
| | | | | | | | | | |||||
| * | | | | | | | | Add contract type to types doc | Chris Ward | 2018-08-01 | 1 | -0/+7 |
| | | | | | | | | | |||||
* | | | | | | | | | Merge pull request #4794 from ethereum/tableWrap | chriseth | 2018-08-13 | 2 | -4/+4 |
|\ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / |/| | | | | | | | | Fix table css. | ||||
| * | | | | | | | | Fix table css. | chriseth | 2018-08-10 | 2 | -4/+4 |
| | |/ / / / / / | |/| | | | | | | |||||
* | | | | | | | | Merge pull request #4793 from ethereum/emptyRemappings | chriseth | 2018-08-13 | 10 | -43/+82 |
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | | | Disallow remappings with empty prefix. | ||||
| * | | | | | | | Update documentation. | Daniel Kirchner | 2018-08-11 | 2 | -11/+11 |
| | | | | | | | | |||||
| * | | | | | | | Disallow remappings with empty prefix. | Daniel Kirchner | 2018-08-11 | 8 | -32/+71 |
|/ / / / / / / | |||||
* | | | | | | | Merge pull request #4791 from ethereum/useCodeBlock | chriseth | 2018-08-10 | 2 | -23/+23 |
|\ \ \ \ \ \ \ | |_|/ / / / / |/| | | | | | | Use code-block when using a different language. | ||||
| * | | | | | | Use code-block when using a different language. | chriseth | 2018-08-10 | 2 | -23/+23 |
|/ / / / / / | |||||
* | | | | | | Merge pull request #4790 from ethereum/fixCalldata | chriseth | 2018-08-10 | 1 | -1/+1 |
|\ \ \ \ \ \ | | | | | | | | | | | | | | | Fix data location of external reference parameters. | ||||
| * | | | | | | Fix data location of external reference parameters. | chriseth | 2018-08-09 | 1 | -1/+1 |
| | |/ / / / | |/| | | | | |||||
* | | | | | | Merge pull request #4767 from ethereum/cvc4Build | Daniel Kirchner | 2018-08-09 | 5 | -13/+39 |
|\ \ \ \ \ \ | | | | | | | | | | | | | | | Add workarounds for building against CVC4 on ArchLinux. | ||||
| * | | | | | | Add Changelog entry. | Daniel Kirchner | 2018-08-09 | 1 | -0/+1 |
| | | | | | | | |||||
| * | | | | | | Do not force GMP to be present as dependency of CVC4, but also allow CLN ↵ | Daniel Kirchner | 2018-08-09 | 3 | -17/+23 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | instead. | ||||
| * | | | | | | Add workarounds for building against CVC4 on ArchLinux. | Daniel Kirchner | 2018-08-09 | 3 | -2/+21 |
| | | | | | | | |||||
* | | | | | | | Merge pull request #4786 from gftea/develop | chriseth | 2018-08-09 | 1 | -1/+1 |
|\ \ \ \ \ \ \ | |_|/ / / / / |/| | | | / / | | |_|_|/ / | |/| | | | | add "ref for text "fallback function" in Types.rst | ||||
| * | | | | | add link for text "fallback function" | gftea | 2018-08-09 | 1 | -1/+1 |
| | | | | | | |||||
* | | | | | | Merge pull request #4785 from f-daniel/patch-1 | chriseth | 2018-08-09 | 1 | -0/+9 |
|\ \ \ \ \ \ | | | | | | | | | | | | | | | Extension of tools list in documentation | ||||
| * | | | | | | Extension of tools list | f-daniel | 2018-08-09 | 1 | -0/+9 |
|/ / / / / / | | | | | | | | | | | | | Adding some recent and reliable tools to work with smart contracts and analyze their security. | ||||
* | | | | | | Merge pull request #4783 from elopio/test/function-call-syntactical-equality | chriseth | 2018-08-09 | 1 | -1/+27 |
|\ \ \ \ \ \ | | | | | | | | | | | | | | | tests: add yul simplifier not applied with function calls | ||||
| * | | | | | | tests: add yul simplifier not applied with function calls | Leo Arias | 2018-08-09 | 1 | -1/+27 |
| |/ / / / / | |||||
* | | | | | | Merge pull request #4784 from ethereum/fixes-msvc-compilation | chriseth | 2018-08-09 | 1 | -24/+25 |
|\ \ \ \ \ \ | |/ / / / / |/| | | | | | Fixes compilation under MSVC introduced in PR #4772. | ||||
| * | | | | | Fixes compilation under MSVC. | Christian Parpart | 2018-08-09 | 1 | -24/+25 |
|/ / / / / | |||||
* | | | | | Merge pull request #4781 from ethereum/stdNext | chriseth | 2018-08-09 | 2 | -2/+2 |
|\ \ \ \ \ | | | | | | | | | | | | | Explicitly use std::next to avoid boost version. | ||||
| * | | | | | Explicitly use std::next to avoid boost version. | chriseth | 2018-08-09 | 2 | -2/+2 |
|/ / / / / | |||||
* | | | | | Merge pull request #4778 from ethereum/dynamicArraysDocs | chriseth | 2018-08-09 | 1 | -8/+5 |
|\ \ \ \ \ | | | | | | | | | | | | | Change note about returning dynamic arrays. | ||||
| * | | | | | Change note about returning dynamic arrays. | chriseth | 2018-08-09 | 1 | -8/+5 |
|/ / / / / | |||||
* | | | | | Merge pull request #4775 from ethereum/sha3-to-keccak256 | chriseth | 2018-08-09 | 6 | -15/+15 |
|\ \ \ \ \ | | | | | | | | | | | | | Rename FunctionKind SHA3 to KECCAK256 (as the instruction was renamed in libevmasm) | ||||
| * | | | | | Rename FunctionKind SHA3 to KECCAK256 (as the instruction was renamed in ↵ | Alex Beregszaszi | 2018-08-09 | 6 | -15/+15 |
| | | | | | | | | | | | | | | | | | | | | | | | | libevmasm) | ||||
* | | | | | | Merge pull request #4773 from ethereum/chriseth-patch-1 | chriseth | 2018-08-09 | 1 | -7/+5 |
|\ \ \ \ \ \ | |/ / / / / |/| | | | | | Clarify packed encoding. | ||||
| * | | | | | Clarify packed encoding. | chriseth | 2018-08-09 | 1 | -7/+5 |
| | |_|/ / | |/| | | | |||||
* | | | | | Merge pull request #4772 from ethereum/asm-json | Alex Beregszaszi | 2018-08-09 | 3 | -3/+182 |
|\ \ \ \ \ | |/ / / / |/| | | | | Add tests for the assembler object (and avoid misusing string{} for u256) | ||||
| * | | | | Use dev::toString() in Assembly instead of misusing string{} for u256 | Alex Beregszaszi | 2018-08-09 | 1 | -2/+2 |
| | | | | | |||||
| * | | | | Test for legacyAssembly in StandardCompiler | Alex Beregszaszi | 2018-08-09 | 1 | -1/+29 |
| | | | | | |||||
| * | | | | Add tests for the assembler object | Alex Beregszaszi | 2018-08-09 | 1 | -0/+151 |
| |/ / / | |||||
* | | | | Merge pull request #4684 from ethereum/underscores_in_numeric_literals | chriseth | 2018-08-09 | 15 | -14/+256 |
|\ \ \ \ | |/ / / |/| | | | [BREAKING] Underscores in numeric literals | ||||
| * | | | Cleanup & polish numbers-with-underscores parsing, also improving tests. | Christian Parpart | 2018-08-08 | 12 | -200/+180 |
| | | | | |||||
| * | | | Add stricter hex underscore rules | Balajiganapathi S | 2018-08-08 | 7 | -20/+86 |
| | | | | |||||
| * | | | Allow underscores in numbers. | Balajiganapathi S | 2018-08-08 | 5 | -2/+198 |
| | | | | |||||
* | | | | Merge pull request #4665 from mattaereal/cmake-patch-solver | Alex Beregszaszi | 2018-08-09 | 5 | -11/+43 |
|\ \ \ \ | | | | | | | | | | | cmake option added to make solvers optional | ||||
| * | | | | cmake flags to make solvers optional. Implementation of #4651 | Matías Aereal Aeón | 2018-08-08 | 5 | -11/+43 |
| | | | | | |||||
* | | | | | Merge pull request #4770 from ethereum/throw-codegen | Alex Beregszaszi | 2018-08-09 | 1 | -4/+2 |
|\ \ \ \ \ | | | | | | | | | | | | | Remove code generation for Throw statement | ||||
| * | | | | | Remove code generation for Throw statement | Alex Beregszaszi | 2018-08-09 | 1 | -4/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | It is disallowed in the type system. | ||||
* | | | | | | Merge pull request #4769 from ethereum/inlineasm-overloading-resolution | Alex Beregszaszi | 2018-08-09 | 3 | -0/+15 |
|\ \ \ \ \ \ | |/ / / / / |/| | | | | | Provide nicer error message when referencing overloaded references | ||||
| * | | | | | Provide nicer error message when referencing overloaded references | Alex Beregszaszi | 2018-08-08 | 3 | -0/+15 |
| | | | | | | |||||
* | | | | | | Merge pull request #4753 from mattaereal/boost-to-string-patch | Alex Beregszaszi | 2018-08-08 | 14 | -36/+32 |
|\ \ \ \ \ \ | | | | | | | | | | | | | | | Replace boost:lexical_cast<std::string> for std::to_string. | ||||
| * | | | | | | Removing std:: from std::to_string and include for boost/lexical_cast | Matías Aereal Aeón | 2018-08-08 | 13 | -35/+31 |
| | | | | | | | |||||
| * | | | | | | Replace boost:lexical_cast<std::string> for std::to_string. | Matías Aereal Aeón | 2018-08-08 | 4 | -11/+11 |
| | |/ / / / | |/| | | | | |||||
* | | | | | | Merge pull request #4761 from ethereum/libsolc-exceptions | Alex Beregszaszi | 2018-08-08 | 4 | -22/+28 |
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | | Mark libsolc external C functions as noexcept | ||||
| * | | | | | Mark libsolc external C functions as noexcept | Alex Beregszaszi | 2018-08-08 | 2 | -18/+24 |
| | | | | | | | | | | | | | | | | | | | | | | | | These are part of the external C API where leaking through exceptions makes no sense. | ||||
| * | | | | | Mark StandardCompiler::compile as noexcept | Alex Beregszaszi | 2018-08-08 | 2 | -4/+4 |
| | |/ / / | |/| | | | | | | | | | | | | | It has a generic catch statement and shouldn't leak out exceptions. | ||||
* | | | | | Merge pull request #4763 from ethereum/remove-experimental-050 | Alex Beregszaszi | 2018-08-08 | 3 | -6/+2 |
|\ \ \ \ \ | | | | | | | | | | | | | Remove experimental 0.5.0 pragma | ||||
| * | | | | | Remove experimental 0.5.0 pragma | Alex Beregszaszi | 2018-08-08 | 3 | -6/+2 |
|/ / / / / | |||||
* | | | | | Merge pull request #4740 from ethereum/enforceNumberOfReturnValues | chriseth | 2018-08-08 | 13 | -38/+101 |
|\ \ \ \ \ | | | | | | | | | | | | | Disallow empty return in function with return arguments. | ||||
| * | | | | | Add back lost test case to a more reasonable location. | Daniel Kirchner | 2018-08-08 | 1 | -0/+3 |
| | | | | | | |||||
| * | | | | | Adjust return expressions in compilation tests. | Daniel Kirchner | 2018-08-08 | 2 | -9/+8 |
| | | | | | | |||||
| * | | | | | Update and extend tests for return expressions. | Daniel Kirchner | 2018-08-08 | 8 | -28/+84 |
| | | | | | | |||||
| * | | | | | Disallow empty return expressions in functions with non-empty return parameters. | Daniel Kirchner | 2018-08-08 | 2 | -1/+6 |
| | | | | | | |||||
* | | | | | | Merge pull request #4589 from sifmelcara/fix/dynamic-link-boost-test | Alex Beregszaszi | 2018-08-08 | 2 | -0/+19 |
|\ \ \ \ \ \ | | | | | | | | | | | | | | | Fix shared boost test library build by customizing main | ||||
| * | | | | | | Define BOOST_TEST_DYN_LINK for building soltest if Boost_USE_STATIC_LIBS is ↵ | Daniel Kirchner | 2018-08-02 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | not set. | ||||
| * | | | | | | Fix shared boost test library build by customizing main | mingchuan | 2018-08-02 | 1 | -0/+15 |
| | | | | | | | |||||
* | | | | | | | Merge pull request #4528 from guidovranken/propagate_CMAKE_CXX_FLAGS_jsoncpp | Alex Beregszaszi | 2018-08-08 | 1 | -3/+11 |
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | Propagate original CMAKE_CXX_FLAGS to jsoncpp compilation | ||||
| * | | | | | | | Rename JSONCPP_EXTRA_FLAGS to JSONCPP_CXX_FLAGS, add EMSCRIPTEN workaround ↵ | Daniel Kirchner | 2018-08-08 | 1 | -3/+11 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | and remove obsolete MSVC workaround. | ||||
| * | | | | | | | Propagate original CMAKE_CXX_FLAGS to jsoncpp compilation | Guido Vranken | 2018-07-19 | 1 | -1/+1 |
| | | | | | | | | |||||
* | | | | | | | | Merge pull request #4747 from ethereum/enum-docs | chriseth | 2018-08-08 | 1 | -1/+0 |
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | Update enum with lifting the restriction for interfaces | ||||
| * | | | | | | | | Update enum with lifting the restriction for interfaces | Alex Beregszaszi | 2018-08-08 | 1 | -1/+0 |
| | |_|_|/ / / / | |/| | | | | | | |||||
* | | | | | | | | Merge pull request #4737 from ethereum/isoltestEarlyExit | chriseth | 2018-08-08 | 1 | -13/+22 |
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | Return from main if quit was requested during a sub-testsuite. | ||||
| * | | | | | | | | Initialize ``TestTool::m_formatted``. | Daniel Kirchner | 2018-08-08 | 1 | -1/+1 |
| | | | | | | | | | |||||
| * | | | | | | | | Always count all test cases in isoltest and exit early on user request. | Daniel Kirchner | 2018-08-08 | 1 | -12/+21 |
| | |_|_|/ / / / | |/| | | | | | | |||||
* | | | | | | | | Merge pull request #4748 from ethereum/validate-identifier | chriseth | 2018-08-08 | 3 | -2/+13 |
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | Assert that type identifier contains only valid characters | ||||
| * | | | | | | | | Assert that type identifier contains only valid characters | Alex Beregszaszi | 2018-08-08 | 2 | -1/+12 |
| | | | | | | | | | |||||
| * | | | | | | | | Yul grammar: allow multiple $ signs (matches Solidity) | Alex Beregszaszi | 2018-08-08 | 1 | -1/+1 |
| | |/ / / / / / | |/| | | | | | | |||||
* | | | | | | | | Merge pull request #4745 from ethereum/nameResolverNoEarlyExit | chriseth | 2018-08-08 | 1 | -3/+0 |
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | Do not stop after the first error in reference resolution. | ||||
| * | | | | | | | | Do not stop after the first error in reference resolution. | chriseth | 2018-08-08 | 1 | -3/+0 |
| | |/ / / / / / | |/| | | | | | | |||||
* | | | | | | | | Merge pull request #4749 from elopio/test/yul-simplifier-not-applied | chriseth | 2018-08-08 | 1 | -0/+10 |
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | tests: add yul simplifier not applied | ||||
| * | | | | | | | | tests: add yul simplifier not applied | Leo Arias | 2018-08-08 | 1 | -0/+10 |
| | |/ / / / / / | |/| | | | | | | |||||
* | | | | | | | | Merge pull request #4754 from Rytiss/patch-1 | Alex Beregszaszi | 2018-08-08 | 1 | -1/+1 |
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | Fix typo in Solidity name/url in the changelog | ||||
| * | | | | | | | | Fix typo in Solidity name/url | Rytis Slatkevičius | 2018-08-08 | 1 | -1/+1 |
| |/ / / / / / / | |||||
* | | | | | | | | Merge pull request #4736 from ethereum/removeFillRight | Alex Beregszaszi | 2018-08-08 | 7 | -41/+26 |
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | | | Remove remaining instances of ``fillRight``. | ||||
| * | | | | | | | Remove remaining instances of ``fillRight`` left over from tuple wildcards ↵ | Daniel Kirchner | 2018-08-08 | 7 | -41/+26 |
| |/ / / / / / | | | | | | | | | | | | | | | | | | | | | | assignments. | ||||
* | | | | | | | Merge pull request #4744 from ethereum/smt-magic-variable | Alex Beregszaszi | 2018-08-08 | 1 | -2/+8 |
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | SMT: do not crash on referencing MagicVariableDeclaration | ||||
| * | | | | | | | SMT: do not crash on referencing MagicVariableDeclaration | Alex Beregszaszi | 2018-08-08 | 1 | -2/+8 |
| | | | | | | | | |||||
* | | | | | | | | Merge pull request #4703 from ethereum/solc-fix-double-quoting-path-names | chriseth | 2018-08-08 | 2 | -4/+54 |
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | solc: Fixes double-quoting path names on stderr. | ||||
| * | | | | | | | | solc: Fixes double-quoting path names on stderr and adds tests for it. | Christian Parpart | 2018-08-07 | 2 | -4/+54 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before it was possible to get a failure message, such as: ""notfound.sol"" is not found whereas it should be: "notfound.sol" is not found. | ||||
* | | | | | | | | | Merge pull request #4742 from elopio/patch-4 | chriseth | 2018-08-08 | 1 | -1/+1 |
|\ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / |/| | | | | | | | | Fix typo | ||||
| * | | | | | | | | Fix typo | Leo Arias | 2018-08-08 | 1 | -1/+1 |
|/ / / / / / / / | |||||
* | | | | | | | | Merge pull request #4731 from ethereum/interface-enum | chriseth | 2018-08-07 | 10 | -9/+93 |
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | Allow enums in interfaces | ||||
| * | | | | | | | | Add endToEnd test for referencing enums | Alex Beregszaszi | 2018-08-07 | 1 | -0/+44 |
| | | | | | | | | | |||||
| * | | | | | | | | Add more syntax tests for enums and interfaces/libraries | Alex Beregszaszi | 2018-08-07 | 5 | -0/+48 |
| | | | | | | | | | |||||
| * | | | | | | | | Allow enums in interfaces | Alex Beregszaszi | 2018-08-07 | 4 | -9/+1 |
| | |/ / / / / / | |/| | | | | | | |||||
* | | | | | | | | Merge pull request #4692 from ethereum/devcore-path | chriseth | 2018-08-07 | 4 | -28/+30 |
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | Move absolutePath/sanitizePath helpers from CompilerStack to libdevcore | ||||
| * | | | | | | | | Move absolutePath/sanitizePath helpers from CompilerStack to libdevcore | Alex Beregszaszi | 2018-08-06 | 4 | -28/+30 |
| | | | | | | | | | |||||
* | | | | | | | | | Merge pull request #4699 from ethereum/cleanup_VariableDeclaration | chriseth | 2018-08-07 | 3 | -111/+109 |
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | libsolidity: Remove dead code wrt. VariableDeclaration::canHaveAutoType | ||||
| * | | | | | | | | | libsolidity: Remove dead code wrt. VariableDeclaration::canHaveAutoType() | Christian Parpart | 2018-08-07 | 3 | -111/+109 |
| | |_|/ / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | Closes #4667 | ||||
* | | | | | | | | | Merge pull request #4726 from ethereum/moveNothrow | chriseth | 2018-08-07 | 2 | -11/+2 |
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | Make MemberList nothrow move constructible. | ||||
| * | | | | | | | | | Make MemberList nothrow move constructible. | chriseth | 2018-08-07 | 2 | -11/+2 |
| | | | | | | | | | | |||||
* | | | | | | | | | | Merge pull request #4720 from ethereum/abi-rational-type-identifier | Alex Beregszaszi | 2018-08-07 | 4 | -1/+48 |
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | Fix type identifiers for RationalNumberType (on negative numbers) | ||||
| * | | | | | | | | | | Add test for abi.encode (negative) literals | Alex Beregszaszi | 2018-08-07 | 1 | -0/+36 |
| | | | | | | | | | | | |||||
| * | | | | | | | | | | Fix type identifiers for RationalNumberType | Alex Beregszaszi | 2018-08-07 | 3 | -1/+12 |
| | |_|_|/ / / / / / | |/| | | | | | | | | |||||
* | | | | | | | | | | Merge pull request #4729 from ethereum/slot-on-non-storage | Alex Beregszaszi | 2018-08-07 | 3 | -1/+17 |
|\ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / |/| | | | | | | | | | Properly handle invalid references used together with _slot and _offset. | ||||
| * | | | | | | | | | More precise error message if using non-variables with _slot/_offset | Alex Beregszaszi | 2018-08-07 | 3 | -4/+8 |
| | | | | | | | | | | |||||
| * | | | | | | | | | Properly handle invalid references used together with _slot and _offset. | Alex Beregszaszi | 2018-08-07 | 3 | -0/+12 |
| | | | | | | | | | | |||||
* | | | | | | | | | | Merge pull request #4695 from ethereum/test-natspec | chriseth | 2018-08-07 | 1 | -25/+26 |
|\ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / |/| | | | | | | | | | Be explicit about which contract to test for in the Natspec tests | ||||
| * | | | | | | | | | Be explicit about which contract to test for in the Natspec tests | Alex Beregszaszi | 2018-08-06 | 1 | -25/+26 |
| | | | | | | | | | | |||||
* | | | | | | | | | | Merge pull request #4724 from ethereum/slot-in-assembly | Alex Beregszaszi | 2018-08-07 | 4 | -0/+24 |
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | Do not crash on using _slot and _offset suffixes on their own | ||||
| * | | | | | | | | | | Do not crash on using _slot and _offset suffixes on their own | Alex Beregszaszi | 2018-08-07 | 4 | -0/+24 |
| | |_|/ / / / / / / | |/| | | | | | | | | |||||
* | | | | | | | | | | Merge pull request #4725 from ethereum/chriseth-patch-1 | Alex Beregszaszi | 2018-08-07 | 1 | -2/+11 |
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | Clarify allocation and initial value of free memoy pointer. | ||||
| * | | | | | | | | | | Clarify allocation and initial value of free memoy pointer. | chriseth | 2018-08-07 | 1 | -2/+11 |
| | | | | | | | | | | | |||||
* | | | | | | | | | | | Merge pull request #4592 from asifmallik/fixBackslashBugFinal | Alex Beregszaszi | 2018-08-07 | 2 | -2/+3 |
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | Fix backslash bug | ||||
| * | | | | | | | | | | | Fix backslash bug | Asif Mallik | 2018-08-07 | 2 | -2/+3 |
| | | | | | | | | | | | | |||||
* | | | | | | | | | | | | Merge pull request #4701 from ethereum/removeClone | chriseth | 2018-08-07 | 9 | -122/+3 |
|\ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|/ / / / / / / |/| | | | | | | | | | | | Remove clone feature. | ||||
| * | | | | | | | | | | | Remove clone feature. | chriseth | 2018-08-07 | 9 | -122/+3 |
| | |_|/ / / / / / / / | |/| | | | | | | | | | |||||
* | | | | | | | | | | | Merge pull request #4563 from ethereum/codecov-config | chriseth | 2018-08-07 | 2 | -1/+19 |
|\ \ \ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / / / |/| | | | | | | | | | | Add codecov config | ||||
| * | | | | | | | | | | Add codecov config | Paweł Bylica | 2018-08-07 | 2 | -1/+19 |
| | | | | | | | | | | | |||||
* | | | | | | | | | | | Merge pull request #4719 from elopio/coverage-option | chriseth | 2018-08-07 | 1 | -2/+2 |
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | Update the coverage info message in cmake | ||||
| * | | | | | | | | | | | Update the coverage info message in cmake | Leo Arias | 2018-08-07 | 1 | -2/+2 |
| | |/ / / / / / / / / | |/| | | | | | | | | | |||||
* | | | | | | | | | | | Merge pull request #4598 from ethereum/issueTemplate | chriseth | 2018-08-07 | 4 | -0/+94 |
|\ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / |/| | | | | | | | | | | Add issue template for GitHub | ||||
| * | | | | | | | | | | Adds issue templates for GitHub. | Erik Kundt | 2018-08-07 | 4 | -0/+94 |
| | |_|_|/ / / / / / | |/| | | | | | | | | |||||
* | | | | | | | | | | Merge pull request #4557 from ethereum/ast-function-fqdn | chriseth | 2018-08-07 | 2 | -11/+2 |
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | Properly show constructor/fallback in FunctionDefinition.fullyQualfiedName | ||||
| * | | | | | | | | | | Move fullyQualifiedName to ContractDefinition only | Alex Beregszaszi | 2018-08-07 | 2 | -11/+2 |
| | | | | | | | | | | | |||||
* | | | | | | | | | | | Merge pull request #4694 from ethereum/test-abijson | chriseth | 2018-08-07 | 1 | -31/+31 |
|\ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / |/| | | | | | | | | | | Be explicit about which contract to test for in ABIJSON tests | ||||
| * | | | | | | | | | | Be explicit about which contract to test for in ABIJSON tests | Alex Beregszaszi | 2018-08-06 | 1 | -31/+31 |
| | |_|_|/ / / / / / | |/| | | | | | | | | |||||
* | | | | | | | | | | Merge pull request #4663 from ethereum/dropConstantAST | chriseth | 2018-08-07 | 22 | -54/+1 |
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | [BREAKING] Drop constant field from JSON AST | ||||
| * | | | | | | | | | | Update tests. | Daniel Kirchner | 2018-08-06 | 20 | -48/+0 |
| | | | | | | | | | | | |||||
| * | | | | | | | | | | Remove "constant" from JSON AST. | Daniel Kirchner | 2018-08-06 | 2 | -6/+1 |
| | | | | | | | | | | | |||||
* | | | | | | | | | | | Merge pull request #3496 from ltfschoen/patch-6 | chriseth | 2018-08-07 | 1 | -5/+63 |
|\ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|/ / / / / / |/| | | | | | | | | | | Update Style Guide examples to comply with CapWords requirement for contract and file naming | ||||
| * | | | | | | | | | | Update style guide with regards to CapWords requirement for contract and ↵ | Luke Schoen | 2018-08-07 | 1 | -5/+63 |
|/ / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | file naming. | ||||
* | | | | | | | | | | Merge pull request #4498 from ethereum/faq-reorg-intro | chriseth | 2018-08-06 | 2 | -107/+24 |
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | Move intro related FAQ points | ||||
| * | | | | | | | | | | Move intro related FAQ points | Chris Ward | 2018-08-06 | 2 | -107/+24 |
| | |_|_|_|_|_|/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changes from feedback Changes from review | ||||
* | | | | | | | | | | Merge pull request #4659 from ethereum/abiv2-fixedbytes | chriseth | 2018-08-06 | 2 | -1/+40 |
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | FixedBytes(0) is invalid, do not check for it in ABIEncoderV2 | ||||
| * | | | | | | | | | | Tests for deriving types for empty string. | chriseth | 2018-08-06 | 1 | -0/+38 |
| | | | | | | | | | | | |||||
| * | | | | | | | | | | FixedBytes(0) is invalid, do not check for it in ABIEncoderV2 | Alex Beregszaszi | 2018-08-06 | 1 | -1/+2 |
|/ / / / / / / / / / | |||||
* | | | | | | | | | | Merge pull request #4689 from ethereum/cleanup-050-tests | chriseth | 2018-08-06 | 25 | -109/+11 |
|\ \ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / / |/| | | | | | | | | | Cleanup 0.5.0 test cases | ||||
| * | | | | | | | | | Remove unused 050 variable in ReferencesResolver | Alex Beregszaszi | 2018-08-06 | 2 | -3/+0 |
| | | | | | | | | | | |||||
| * | | | | | | | | | Cleanup 0.5.0 test cases | Alex Beregszaszi | 2018-08-06 | 23 | -106/+11 |
| | | | | | | | | | | |||||
* | | | | | | | | | | Merge pull request #4690 from ethereum/equalParameterTypes | Alex Beregszaszi | 2018-08-06 | 5 | -9/+9 |
|\ \ \ \ \ \ \ \ \ \ | |_|_|_|/ / / / / / |/| | | | | | | | | | Renamed FunctionType::hasEqualArgumentTypes to FunctionType::hasEqual… | ||||
| * | | | | | | | | | Renamed FunctionType::hasEqualArgumentTypes to ↵ | Jesse Busman | 2018-08-06 | 5 | -9/+9 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | FunctionType::hasEqualParameterTypes | ||||
* | | | | | | | | | | Merge pull request #4671 from ethereum/mappingTupleAssignment | chriseth | 2018-08-06 | 11 | -17/+179 |
|\ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / |/| | | | | | | | | | Disallow assignments to mappings within tuple assignments; allow for local variables. | ||||
| * | | | | | | | | | Additional semantics test cases. | Daniel Kirchner | 2018-08-03 | 1 | -0/+45 |
| | | | | | | | | | | |||||
| * | | | | | | | | | Review suggestions; to be squashed. | Daniel Kirchner | 2018-08-03 | 1 | -8/+10 |
| | | | | | | | | | | |||||
| * | | | | | | | | | Allow assignments to local variables of mapping types. | Daniel Kirchner | 2018-08-03 | 7 | -5/+67 |
| | | | | | | | | | | |||||
| * | | | | | | | | | Disallow assignments to mappings within tuple assignments. | Daniel Kirchner | 2018-08-03 | 7 | -17/+70 |
| | | | | | | | | | | |||||
* | | | | | | | | | | Merge pull request #4595 from ethereum/tests-run-improvements | chriseth | 2018-08-06 | 1 | -15/+59 |
|\ \ \ \ \ \ \ \ \ \ | |_|/ / / / / / / / |/| | | | | | | | | | fixes tests.sh to not use hard-coded working dir and adds proper cleanup | ||||
| * | | | | | | | | | fixes tests.sh to not use hard-coded working dir and adds proper cleanup | Christian Parpart | 2018-08-01 | 1 | -15/+59 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Implicitely also allows concurrent runs. * Properly cleanup of any working files created during runtime. * Properly cleanup upon singals. * Allow early-abort during cmdline tests without leaking processes. | ||||
* | | | | | | | | | | Merge pull request #4602 from hackaugusto/warnings | chriseth | 2018-08-06 | 4 | -18/+21 |
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | Added guards for unknown pragmas | ||||
| * | | | | | | | | | | Added guards for unknown pragmas | Augusto F. Hack | 2018-08-06 | 4 | -18/+21 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Removed push/pop if there was no change to the warnings *in the same file* for a given compiler. This assumes the imported boost headers use a warning stack themselves. The pragmas don't seem to be required anymore, but were not removed to mantain compatibility with older versions of the boost library. Compiled with - clang version 6.0.1 (tags/RELEASE_601/final) - gcc (GCC) 8.1.1 20180531 against: - libboost 1.67.0-5 | ||||
* | | | | | | | | | | | Merge pull request #4644 from ethereum/event_struct_error | chriseth | 2018-08-06 | 10 | -0/+39 |
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | Disallow structs in events without ABIEncoderV2 | ||||
| * | | | | | | | | | | | Disallow structs in events without ABIEncoderV2 | Leonardo Alt | 2018-08-03 | 10 | -0/+39 |
| | |_|/ / / / / / / / | |/| | | | | | | | | | |||||
* | | | | | | | | | | | Merge pull request #4681 from ethereum/var-suggestion-crash | chriseth | 2018-08-06 | 2 | -0/+18 |
|\ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|/ / / / / / |/| | | | | | | | | | | Fix declaration suggestion for var with different number of components | ||||
| * | | | | | | | | | | Fix declaration suggestion for var with different number of components | Alex Beregszaszi | 2018-08-04 | 2 | -0/+18 |
| | | | | | | | | | | | |||||
* | | | | | | | | | | | Merge pull request #4677 from ethereum/jsonAstTestExtraction | chriseth | 2018-08-06 | 58 | -473/+5054 |
|\ \ \ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / / / |/| | | | | | | | | | | JSON AST test extraction | ||||
| * | | | | | | | | | | Extract AST JSON tests. | Daniel Kirchner | 2018-08-04 | 54 | -470/+4753 |
| | | | | | | | | | | | |||||
| * | | | | | | | | | | Infrastructure for extracting JSON AST tests. | Daniel Kirchner | 2018-08-04 | 5 | -4/+302 |
| |/ / / / / / / / / | |||||
* | | | | | | | | | | Merge pull request #4616 from ethereum/1093-interface-generator | chriseth | 2018-08-04 | 1 | -0/+3 |
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | Add interface generator to tools section | ||||
| * | | | | | | | | | | Add interface generator to tools section | Chris Ward | 2018-07-30 | 1 | -0/+3 |
| | | | | | | | | | | | |||||
* | | | | | | | | | | | Merge pull request #4412 from ethereum/v050-reference-resolver-errorTypeForLoose | Christian Parpart | 2018-08-04 | 22 | -275/+38 |
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | [BREAKING] permanently set errorTypeForLoose from Warning to SyntaxError | ||||
| * | | | | | | | | | | | Drops tests for inline assembly jumps and function access as both isn't ↵ | Christian Parpart | 2018-08-02 | 1 | -46/+0 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | possible anymore. | ||||
| * | | | | | | | | | | | Drop swap_peephole_optimization test from EndToEndTests | Christian Parpart | 2018-08-02 | 1 | -44/+0 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Already covered by libevmasm/Optimiser: peephole_noncommutative_swap1, peephole_commutative_swap1 and peephole_swap_comparison | ||||
| * | | | | | | | | | | | Update tests to remove support for loose assembly | Christian Parpart | 2018-08-02 | 10 | -81/+24 |
| | | | | | | | | | | | | |||||
| * | | | | | | | | | | | Remove loose assembly features from the documentation | Christian Parpart | 2018-08-02 | 1 | -54/+3 |
| | | | | | | | | | | | | |||||
| * | | | | | | | | | | | Disallow loos assembly in Solidity by permanently setting it to SyntaxError ↵ | Christian Parpart | 2018-08-02 | 16 | -56/+17 |
| | |_|_|_|_|_|_|/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (from Warning) | ||||
* | | | | | | | | | | | Merge pull request #4662 from evgeniuz/develop | Alex Beregszaszi | 2018-08-03 | 3 | -10/+61 |
|\ \ \ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / / / |/| | | | | | | | | | | added helper function that joins vectors of strings | ||||
| * | | | | | | | | | | added helper function that joins vectors of strings, refactored suggestions ↵ | Evgeniy Filatov | 2018-08-03 | 3 | -10/+61 |
| | |_|_|_|/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | formattingi function to use it | ||||
* | | | | | | | | | | Merge pull request #4526 from ethereum/docs-address-truncation | Alex Beregszaszi | 2018-08-03 | 1 | -0/+8 |
|\ \ \ \ \ \ \ \ \ \ | |_|_|_|/ / / / / / |/| | | | | | | | | | Clarify truncation with addresses | ||||
| * | | | | | | | | | Clarify truncation with addresses | Chris Ward | 2018-08-03 | 1 | -0/+8 |
|/ / / / / / / / / | |||||
* | | | | | | | | | Merge pull request #4664 from ethereum/uninitializedStorageReturn | chriseth | 2018-08-03 | 23 | -183/+184 |
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | Turn warning about uninitialized storage returns into an error. | ||||
| * | | | | | | | | | Turn warning about uninitialized storage returns into an error. | Daniel Kirchner | 2018-08-03 | 23 | -183/+184 |
| |/ / / / / / / / | |||||
* | | | | | | | | | Merge pull request #4657 from ethereum/fix-beyond-STL-end-undefined-behavior | chriseth | 2018-08-03 | 1 | -3/+11 |
|\ \ \ \ \ \ \ \ \ | |/ / / / / / / / |/| | | | | | | | | evmasm/Instruction: fixes undefined behavior of advancing iterator beyond the end of a container. | ||||
| * | | | | | | | | evmasm/Instruction: fixes undefined behavior of advancing iterator beyond ↵ | Christian Parpart | 2018-08-03 | 1 | -3/+11 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the end of a container. Usually the STL doesn't check whether or not the developer advances beyond its container's end, but MSVC does (found out by running soltest in debug mode on Win32 / VS2017). | ||||
* | | | | | | | | | Merge pull request #4327 from ethereum/document-internals | chriseth | 2018-08-02 | 3 | -2/+19 |
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | Properly explain all the analsys steps in CompilerStack | ||||
| * | | | | | | | | | Properly explain all the analsys steps in CompilerStack | Alex Beregszaszi | 2018-07-31 | 3 | -2/+19 |
| | |_|_|/ / / / / | |/| | | | | | | | |||||
* | | | | | | | | | Merge pull request #4522 from ethereum/fullEncodingType | chriseth | 2018-08-02 | 5 | -42/+37 |
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | Isolate determining the encoding type into its own function. | ||||
| * | | | | | | | | | Isolate determining the encoding type into its own function. | chriseth | 2018-08-01 | 5 | -42/+37 |
| | |_|_|_|_|_|/ / | |/| | | | | | | | |||||
* | | | | | | | | | Merge pull request #4560 from ethereum/cmake-policy | Alex Beregszaszi | 2018-08-02 | 2 | -25/+6 |
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | CMake policies | ||||
| * | | | | | | | | | CMake: Better policy availability checking | Paweł Bylica | 2018-07-24 | 1 | -13/+6 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It's better to use if(POLICY ...) and we don't have to check for CMake 3.0 because this is the minimal required version. | ||||
| * | | | | | | | | | CMake: Set CMP0043 to NEW | Paweł Bylica | 2018-07-24 | 1 | -3/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This avoids warning in CMake 3.0.2 | ||||
| * | | | | | | | | | CMake: Set CMP0042 to NEW | Paweł Bylica | 2018-07-24 | 1 | -2/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This should not affect solidity, but with this setting all supported CMake version will use NEW policy are will be allowed to use RPATH on macOS. | ||||
| * | | | | | | | | | CMake: Do not set CMP0020 because it's about Qt | Paweł Bylica | 2018-07-24 | 1 | -3/+0 |
| | | | | | | | | | | |||||
| * | | | | | | | | | CMake: Do not use non-existing sanitizer blacklist | Paweł Bylica | 2018-07-24 | 1 | -3/+0 |
| | | | | | | | | | | |||||
| * | | | | | | | | | CMake: Drop policy CMP0028 OLD | Paweł Bylica | 2018-07-24 | 1 | -4/+0 |
| | | | | | | | | | | |||||
* | | | | | | | | | | Merge pull request #4584 from dylanjw/update-abi-event-doc | chriseth | 2018-08-02 | 1 | -1/+1 |
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | Update doc referencing packed mode encoding for dynamic typed topic args |