aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #3008 from ethereum/lll-include-callbackAlex Beregszaszi2017-10-036-23/+30
|\ | | | | LLL: change (include) to use a callback
| * LLL: change (include) to use a callbackAlex Beregszaszi2017-10-036-23/+30
|/
* Merge pull request #3005 from ethereum/lll-instructionAlex Beregszaszi2017-10-031-1/+17
|\ | | | | lll: do not expose push/dup/swap/jumpdest as functions
| * lll: do not expose push/dup/swap/jumpdest as functionsAlex Beregszaszi2017-10-021-1/+17
| |
* | Merge pull request #2997 from federicobond/duplicate-eventsAlex Beregszaszi2017-10-034-5/+83
|\ \ | | | | | | Emit error when declaring event with same name and arguments twice
| * | Extract duplicate function or event finding logicFederico Bond2017-09-302-37/+14
| | |
| * | Emit error when declaring event with same name and arguments twiceFederico Bond2017-09-304-0/+101
| | |
* | | Merge pull request #3006 from ethereum/exceptionsAlex Beregszaszi2017-10-021-1/+3
|\ \ \ | |_|/ |/| | Always return a valid pointer in Exception::what()
| * | Always return a valid pointer in Exception::what()Alex Beregszaszi2017-10-021-1/+3
| |/
* | Merge pull request #2622 from benjaminion/lll-switchAlex Beregszaszi2017-10-023-0/+252
|\ \ | | | | | | LLL: Implement a "switch" expression
| * | LLL: Add compiler testsAlex Beregszaszi2017-10-021-0/+128
| | |
| * | LLL: Tests for the proposed switch expression.benjaminion2017-10-021-0/+86
| | |
| * | LLL: Implement a switch expression.benjaminion2017-10-021-0/+38
| | |
* | | Merge pull request #3007 from ethereum/lll-better-errorsAlex Beregszaszi2017-10-021-7/+7
|\ \ \ | |/ / |/| | lll: better error reporting in some cases
| * | lll: better error reporting in some casesAlex Beregszaszi2017-10-021-7/+7
| |/
* | Merge pull request #3004 from ethereum/instr-helpersAlex Beregszaszi2017-10-022-3/+21
|\ \ | |/ |/| Add helpers for isPush/isDup/isSwap
| * Add helpers for isPush/isDup/isSwapAlex Beregszaszi2017-10-022-3/+21
|/
* Merge pull request #2939 from roadriverrail/error_unary_plusAlex Beregszaszi2017-09-303-1/+34
|\ | | | | Unary + now a synax error (experimental 0.5.0)
| * Unary + now a synax error (experimental 0.5.0)Rhett Aultman2017-09-303-1/+34
|/ | | | | | | The unary + was deprecated with a warning, but will be elevated to an error in 0.5.0. This adds the syntax error for the 0.5.0 pragma, and for a true 0.5.0 release we should consider removing the operator from the parser.
* Merge pull request #2919 from ethereum/validate-array-lengthAlex Beregszaszi2017-09-303-1/+12
|\ | | | | Validate array length in type checker
| * Validate array length in type checkerAlex Beregszaszi2017-09-293-1/+12
|/
* Merge pull request #2989 from ethereum/filterMoreWarnigschriseth2017-09-292-16/+40
|\ | | | | Allow frameworks to filter warnings.
| * More verbose error messages.chriseth2017-09-292-13/+26
| |
| * Allow test frameworks to filter out some warnings.chriseth2017-09-292-3/+14
|/
* Merge pull request #2936 from ethereum/proper-address-overload-resolutionchriseth2017-09-295-2/+89
|\ | | | | Fix overload resolution when conflict is with members of address
| * Pull out helper to apply address member to contract membersAlex Beregszaszi2017-09-282-4/+10
| |
| * Simplify address overloadingAlex Beregszaszi2017-09-282-30/+39
| |
| * Fix overload resolution when conflict is with members of address (balance, ↵Alex Beregszaszi2017-09-284-6/+78
|/ | | | transfer, etc)
* Merge pull request #2986 from ethereum/fixsourcelocationofvariabledecsatementAlex Beregszaszi2017-09-282-0/+2
|\ | | | | Fix source location of VariableDeclarationStatement.
| * Fix source location of VariableDeclarationStatement.chriseth2017-09-282-0/+2
| |
* | Fixed code example (#2955)Zetherz2017-09-281-2/+2
| |
* | Merge pull request #2983 from ethereum/verboseAssemblychriseth2017-09-281-6/+28
|\ \ | |/ |/| Better readable encoder assembly.
| * Better readable encoder assembly.chriseth2017-09-271-6/+28
| |
* | Merge pull request #2985 from martriay/patch-1chriseth2017-09-281-1/+1
|\ \ | |/ |/| Update contracts.rst
| * Update contracts.rstMartín Triay2017-09-281-1/+1
|/ | | Fixed web3 URL
* Merge pull request #2975 from ethereum/encode-memoryAlex Beregszaszi2017-09-274-22/+45
|\ | | | | Split encodeToMemory into packedEncode and abiEncode
| * Split encodeToMemory to packedEncode and abiEncodeAlex Beregszaszi2017-09-274-18/+41
| |
| * Make most of the parameters mandatory in encodeToMemoryAlex Beregszaszi2017-09-272-6/+6
| |
* | Merge pull request #2979 from ethereum/globalcontext-simplifyAlex Beregszaszi2017-09-271-42/+25
|\ \ | | | | | | Format GlobalContext for readability
| * | Order GlobalContext entriesAlex Beregszaszi2017-09-271-13/+13
| | |
| * | Format GlobalContext for readabilityAlex Beregszaszi2017-09-271-42/+25
| |/
* | Merge pull request #2972 from ethereum/cmake-cleanup-include-pathschriseth2017-09-274-10/+3
|\ \ | |/ |/| CMake: Cleanup include paths
| * CMake: Cleanup include pathsPaweł Bylica2017-09-274-10/+3
| |
* | Merge pull request #2978 from ethereum/infer-locationchriseth2017-09-271-1/+1
|\ \ | | | | | | Report correct location for inferred types in packed encoding
| * | Report correct location for inferred types in packed encodingAlex Beregszaszi2017-09-271-1/+1
| |/
* | Merge pull request #2976 from ethereum/fix-abi-checkchriseth2017-09-271-23/+25
|\ \ | | | | | | Fix other test to use ABI_CHECK
| * | Fix other test to use ABI_CHECKAlex Beregszaszi2017-09-271-23/+25
| |/
* | Merge pull request #2974 from ethereum/docs-abi-tightchriseth2017-09-273-6/+25
|\ \ | | | | | | Document packed ABI
| * | Document packed ABIAlex Beregszaszi2017-09-273-6/+25
| |/
* | Merge pull request #2973 from ethereum/address-160chriseth2017-09-275-14/+14
|\ \ | |/ |/| Ensure that address types are always declared as 160bit
| * Ensure that address types are always declared as 160bitAlex Beregszaszi2017-09-275-14/+14
| |
* | Merge pull request #2946 from ethereum/cmakeAlex Beregszaszi2017-09-272-16/+30
|\ \ | |/ |/| CMake: Add compiler warning about implicit fallthough
| * CMake: Add compiler warning about implicit fallthoughPaweł Bylica2017-09-262-16/+30
| |
* | Merge pull request #2961 from ethereum/fixEndToEndTestsInputsAlex Beregszaszi2017-09-261-7/+7
|\ \ | |/ |/| Fix encoded EndToEnd inputs.
| * Fix encoded EndToEnd inputs.chriseth2017-09-261-7/+7
| |
* | Merge pull request #2934 from ethereum/fallthroughchriseth2017-09-262-53/+56
|\ \ | |/ |/| Remove last two instances of switch fall-through
| * Simplify switch statements by refactoring internal break statementsAlex Beregszaszi2017-09-252-24/+24
| |
| * Avoid switch fallthrough in ExpressionCompilerAlex Beregszaszi2017-09-251-26/+32
| |
| * Avoid switch fallthrough in CompilerUtilsAlex Beregszaszi2017-09-251-6/+3
| |
* | Merge pull request #2954 from wadeAlexC/developAlex Beregszaszi2017-09-253-0/+87
|\ \ | | | | | | Better message for unexpected trailing commas in parameter lists
| * | Better error message for unexpected trailing comma in parameter listswadeAlexC2017-09-253-0/+87
| |/
* | Merge pull request #2937 from ethereum/failureDiagnosisAlex Beregszaszi2017-09-254-824/+884
|\ \ | | | | | | Improved error messages for EndToEnd tests.
| * | Improved error messages for EndToEnd tests.chriseth2017-09-254-824/+884
| |/
* | Merge pull request #2909 from bernardpeh/mydevchriseth2017-09-251-2/+3
|\ \ | |/ |/| faq typo
| * Update frequently-asked-questions.rstchriseth2017-09-251-2/+3
| |
| * minor tuning to sentence to be more accuratebernard peh2017-09-251-1/+1
| |
| * possible typo fixbernard peh2017-09-161-1/+1
| |
* | Merge pull request #2940 from ethereum/verboseErrorsAlex Beregszaszi2017-09-232-3/+25
|\ \ | | | | | | More verbos error reports.
| * | Provide template for whiskers error.chriseth2017-09-221-1/+7
| | |
| * | More verbose errors for generated assembly.chriseth2017-09-221-2/+18
| | |
* | | Merge pull request #2935 from ethereum/cleanupTestHelpersAlex Beregszaszi2017-09-2210-96/+22
|\ \ \ | |/ / |/| | Cleanup test helper macros.
| * | Cleanup test helper macros.chriseth2017-09-2210-96/+22
|/ /
* | Merge pull request #2952 from ethereum/releasechriseth2017-09-220-0/+0
|\ \ | | | | | | Merge release back into develop.
| * \ Merge pull request #2947 from ethereum/developchriseth2017-09-21146-2210/+4725
| |\ \ | | | | | | | | Merge develop into release for 0.4.17.
* | \ \ Merge pull request #2949 from ethereum/incrementVersionchriseth2017-09-222-1/+7
|\ \ \ \ | |_|/ / |/| | | Increment version.
| * | | Increment version.chriseth2017-09-222-1/+7
|/ / /
* | | Merge pull request #2943 from ethereum/changelog0417chriseth2017-09-212-5/+9
|\ \ \ | | | | | | | | Changelog cleanup in preparation for 0.4.17.
| * | | Update bug list.chriseth2017-09-211-0/+4
| | | |
| * | | Changelog cleanup in preparation for 0.4.17.chriseth2017-09-211-5/+5
|/ / /
* | | Merge pull request #2945 from LefterisJP/docs_fix_fallback_gaschriseth2017-09-211-2/+1
|\ \ \ | | | | | | | | Better specify the fall function gas cost in the docs.
| * | | docs: Specify gas fallback function from callLefteris Karapetsas2017-09-211-2/+1
| | | | | | | | | | | | | | | | | | | | Specify that also 21k gas is needed for fallback functions originating from external function calls.
* | | | Merge pull request #2944 from ethereum/dockerfixattepmtchriseth2017-09-211-1/+1
|\ \ \ \ | |/ / / |/| | | Try to fix docker release deployment.
| * | | Try to fix docker release deployment.chriseth2017-09-211-1/+1
| | | |
* | | | Merge pull request #2938 from ethereum/cmake-ccachePaweł Bylica2017-09-213-8/+18
|\ \ \ \ | |/ / / |/| | | CMake: Better ccache configuration
| * | | CMake: Better ccache configurationPaweł Bylica2017-09-203-8/+18
| | | | | | | | | | | | | | | | EthCcache module taken from cpp-ethereum.
* | | | Merge pull request #2942 from matthieucan/patch-1chriseth2017-09-211-2/+2
|\ \ \ \ | | | | | | | | | | fix typo: missing word in documentation
| * | | | fix typo: missing word in documentationMatthieu Caneill2017-09-211-2/+2
|/ / / /
* | | | Merge pull request #2902 from ethereum/warn-obsoletechriseth2017-09-213-3/+38
|\ \ \ \ | | | | | | | | | | Warn about obsolete sha3/suicide calls
| * | | | Warn about obsolete sha3/suicide callsAlex Beregszaszi2017-09-193-3/+38
| | | | |
* | | | | Merge pull request #2924 from ethereum/inlineasm-assign-multichriseth2017-09-2011-9/+134
|\ \ \ \ \ | | | | | | | | | | | | Support multiple assignment in inline assembly
| * | | | | Remove unintentional copy in assignment operation.chriseth2017-09-202-20/+25
| | | | | |
| * | | | | Limit parser recursion depth further (needed by increased assembly data ↵Alex Beregszaszi2017-09-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | structure size)
| * | | | | Support multiple assignment in inline assemblyAlex Beregszaszi2017-09-2010-25/+145
|/ / / / /
* | | | | Merge pull request #2930 from ethereum/no-deps-submodulechriseth2017-09-205-4/+101
|\ \ \ \ \ | | | | | | | | | | | | Remove deps git submodule
| * | | | | Windows: Copy install_deps.cmake from cpp-dependencies repoPaweł Bylica2017-09-202-1/+100
| | | | | |
| * | | | | jsoncpp: Restore download dir in source treePaweł Bylica2017-09-201-0/+1
| | | | | |
| * | | | | Remove deps git submodulePaweł Bylica2017-09-192-3/+0
| | | | | |
* | | | | | Merge pull request #2929 from ethereum/cppcheckAlex Beregszaszi2017-09-2018-43/+42
|\ \ \ \ \ \ | |_|_|/ / / |/| | | | | Another set of improvements found by cppcheck
| * | | | | Rename MiniMoustache to Whiskers in testsAlex Beregszaszi2017-09-201-0/+0
| | | | | |
| * | | | | Mark functions staticAlex Beregszaszi2017-09-205-16/+16
| | | | | |
| * | | | | Limit of scope of variables in SHA3Alex Beregszaszi2017-09-201-3/+2
| | | | | |
| * | | | | Mark constructors explicitAlex Beregszaszi2017-09-202-3/+3
| | | | | |
| * | | | | Ensure parameter names match between headers and implementationAlex Beregszaszi2017-09-2010-21/+21
|/ / / / /
* | | | | Merge pull request #2927 from ethereum/abispecfixchriseth2017-09-191-4/+4
|\ \ \ \ \ | |/ / / / |/| | | | Fix ABI spec.
| * | | | Clarify shorthand notation in ABIAlex Beregszaszi2017-09-191-2/+2
| | | | |
| * | | | Fix ABI spec regarding arrays.chriseth2017-09-191-2/+2
| |/ / /
* | | | Merge pull request #2926 from ethereum/depsPaweł Bylica2017-09-192-1/+51
|\ \ \ \ | |/ / / |/| | | deps: Move and fix jsoncpp.cmake from deps submodule
| * | | deps: Move and fix jsoncpp.cmake from deps submodulePaweł Bylica2017-09-192-1/+51
| | | | | | | | | | | | | | | | This copies jsoncpp.cmake from ethereum/cpp-dependencies repo and adds BUILD_BYPRODUCT information to ExternalProject configuration (required by Ninja).
* | | | Merge pull request #2920 from ethereum/fixConstantBytesAlex Beregszaszi2017-09-194-1/+38
|\ \ \ \ | | | | | | | | | | Allow constant byte arrays.
| * | | | Add tests for constant bytes/stringsAlex Beregszaszi2017-09-192-0/+36
| | | | |
| * | | | Allow constant byte arrays.chriseth2017-09-192-1/+2
|/ / / /
* | | | Merge pull request #2910 from ethereum/fallback-restrict-externalchriseth2017-09-183-1/+39
|\ \ \ \ | | | | | | | | | | Force fallback to be external (experimental 0.5.0 change)
| * | | | Force fallback to be external (experimental 0.5.0 change)Alex Beregszaszi2017-09-183-1/+39
| |/ / /
* | | | Merge pull request #2922 from ethereum/asm-bytes-requiredchriseth2017-09-181-3/+3
|\ \ \ \ | | | | | | | | | | Properly calculate bytesRequired for subs
| * | | | Properly calculate bytesRequired for subsAlex Beregszaszi2017-09-181-3/+3
| | |_|/ | |/| |
* | | | Merge pull request #1673 from ethereum/structsAlex Beregszaszi2017-09-1815-79/+894
|\ \ \ \ | | | | | | | | | | Returning structs
| * | | | Fixed tests with mappings in structs and added some more.chriseth2017-09-161-2/+90
| | | | |
| * | | | Check for interface types of members and cache recursion check.chriseth2017-09-162-21/+48
| | | | |
| * | | | Add changelogAlex Beregszaszi2017-09-161-0/+1
| | | | |
| * | | | Clarify ABI & Solidity typesAlex Beregszaszi2017-09-161-2/+5
| | | | |
| * | | | Use "tuple" for struct types in ABI JSON.chriseth2017-09-164-27/+52
| | | | | | | | | | | | | | | | | | | | Only use tuple as a type in the ABI (and remove all "anonymous struct" references too)
| * | | | Implement struct encoder.chriseth2017-09-167-52/+177
| | | | |
| * | | | Fix tests.chriseth2017-09-165-6/+11
| | | | |
| * | | | Expect test to fail until implemented.chriseth2017-09-161-1/+4
| | | | |
| * | | | Document structs in ABIchriseth2017-09-161-3/+89
| | | | |
| * | | | Structure type json using "components".chriseth2017-09-162-114/+151
| | | | |
| * | | | Fix interface type conversion internal to structs.chriseth2017-09-164-6/+46
| | | | |
| * | | | Tests for external signatures.chriseth2017-09-161-4/+28
| | | | |
| * | | | Function signatures containing structs.chriseth2017-09-164-45/+98
| | | | |
| * | | | Update tests and error messages.chriseth2017-09-163-14/+14
| | | | |
| * | | | Check for recursive structs.chriseth2017-09-163-4/+33
| | | | |
| * | | | Allow structs as part of function interfaces.chriseth2017-09-166-11/+280
| |/ / /
* | | | Merge pull request #2921 from ethereum/asm-assertion-messageschriseth2017-09-181-3/+3
|\ \ \ \ | |_|/ / |/| | | Add useful messages to exceptions in the assembler
| * | | Add useful messages to exceptions in the assemblerAlex Beregszaszi2017-09-181-3/+3
| |/ /
* | | Merge pull request #2905 from ethereum/circlecichriseth2017-09-184-16/+56
|\ \ \ | |/ / |/| | Emscripten build on Circle CI
| * | Circle CI: Emscripten buildPaweł Bylica2017-09-154-16/+56
| | |
* | | Merge pull request #2823 from ethereum/iuliaCompressorAlex Beregszaszi2017-09-1617-93/+190
|\ \ \ | |/ / |/| | Combine all ABI functions into a single assembly.
| * | Move ABI encoder into its own function.chriseth2017-09-166-66/+83
| | |
| * | Named assembly labels.chriseth2017-09-1613-28/+108
|/ /
* | Merge pull request #2904 from ethereum/viewPure5Alex Beregszaszi2017-09-154-11/+35
|\ \ | | | | | | Enforce view with error for experimental 0.5.0.
| * | Enforce view with error for experimental 0.5.0.chriseth2017-09-144-11/+35
| | |
* | | Merge pull request #2749 from ethereum/require-visibilitychriseth2017-09-1510-564/+588
|\ \ \ | |/ / |/| | Warn if no visibility is specified on contract functions.
| * | Update view/pure tests to contain mandatory visibility specifiersAlex Beregszaszi2017-09-141-53/+51
| | |
| * | Update type tests to contain mandatory visibility specifiersAlex Beregszaszi2017-09-141-495/+506
| | |
| * | Update std to contain visibility specifiersAlex Beregszaszi2017-09-144-15/+15
| | |
| * | Warn if no visibility is specified on contract functions.Alex Beregszaszi2017-09-144-1/+16
|/ /
* | Merge pull request #2883 from ethereum/experimental-v050Alex Beregszaszi2017-09-142-0/+3
|\ \ | | | | | | Add experimental feature 'v0.5.0'
| * | Add experimental feature 'v0.5.0'Alex Beregszaszi2017-09-142-0/+3
|/ /
* | Merge pull request #2900 from ethereum/viewpure-warningsAlex Beregszaszi2017-09-141-14/+14
|\ \ | | | | | | Fix view/pure warnings on selector tests
| * | Fix view/pure warnings on selector testsAlex Beregszaszi2017-09-141-14/+14
|/ /
* | Merge pull request #2898 from ethereum/docs-abichriseth2017-09-141-0/+5
|\ \ | | | | | | Fix nested lists in the ABI documentation
| * | Fix nested lists in the ABI documentationAlex Beregszaszi2017-09-141-0/+5
|/ /
* | Merge pull request #2473 from ethereum/functiontype-sigAlex Beregszaszi2017-09-147-1/+132
|\ \ | | | | | | Add .selector member on function types
| * | Use hashing function in testsAlex Beregszaszi2017-09-131-3/+3
| | |
| * | Document function selectorsAlex Beregszaszi2017-09-132-0/+13
| | |
| * | Rename .sig to .selector on function typesAlex Beregszaszi2017-09-135-17/+17
| | |
| * | Add tests for function type sigsAlex Beregszaszi2017-09-132-0/+105
| | |
| * | Add sig member on function typeAlex Beregszaszi2017-09-133-1/+14
| | |
* | | Merge pull request #2848 from ethereum/checkViewPurechriseth2017-09-1416-90/+954
|\ \ \ | | | | | | | | Enforce view and pure.
| * | | Changelog entry.chriseth2017-09-141-0/+1
| | | |
| * | | Minor changes from review.chriseth2017-09-131-9/+3
| | | |
| * | | Rename to invalidInPureFunctionschriseth2017-09-133-3/+3
| | | |
| * | | Allow constant variables in pure functions.chriseth2017-09-062-1/+14
| | | |
| * | | Rename and add anonymous namespace.chriseth2017-09-063-3/+6
| | | |
| * | | Fix testschriseth2017-09-062-6/+9
| | | |
| * | | Tone down error message.chriseth2017-09-062-5/+5
| | | |
| * | | Modifier invocation can be base constructor callchriseth2017-09-061-5/+7
| | | |
| * | | Analyze assembly.chriseth2017-09-065-13/+153
| | | |
| * | | Add view/pure information about instructions.chriseth2017-09-062-0/+54
| | | |
| * | | New tests for view and pure checker.chriseth2017-09-062-8/+331
| | | |
| * | | Do not report on overriding function and only warn for view.chriseth2017-09-061-12/+19
| | | |
| * | | Store super function.chriseth2017-09-064-0/+8
| | | |
| * | | Remove previous warning about pureness not being enforced.chriseth2017-09-061-2/+0
| | | |
| * | | Change tests to use view or pure as appropriateAlex Beregszaszi2017-09-062-76/+76
| | | |
| * | | View-pure checker.chriseth2017-09-065-2/+320
| | | |
* | | | Merge pull request #2290 from ali92hm/developchriseth2017-09-132-1/+20
|\ \ \ \ | | | | | | | | | | Enabling --combined-json to output to file using the -o flag
| * | | | Added --pretty-json commandline optionAli92hm2017-09-132-6/+11
| | | | |
| * | | | Enabling --combined-json to output to fileAli92hm2017-09-131-1/+5
| | | | |
| * | | | Added createJson method to make writing json easierAli92hm2017-09-132-0/+10
| | |/ / | |/| |
* | | | Merge pull request #2895 from ethereum/docs-creationchriseth2017-09-131-38/+10
|\ \ \ \ | | | | | | | | | | Overhaul contract creation section in the documentation
| * | | | Overhaul contract creation section in the documentation (add reference to ↵Alex Beregszaszi2017-09-131-38/+10
| |/ / / | | | | | | | | | | | | remix and web3.js)
* | | | Merge pull request #2892 from ethereum/limit-duplicate-declaration-errorschriseth2017-09-132-2/+21
|\ \ \ \ | |/ / / |/| | | Limit each duplicate declaration error to 32 references
| * | | Limit each duplicate declaration error to 32 referencesAlex Beregszaszi2017-09-132-2/+21
|/ / /
* | | Merge pull request #2893 from ethereum/travis-clang-buildAlex Beregszaszi2017-09-133-27/+26
|\ \ \ | | | | | | | | Travis CI: Do not cache build dir
| * | | Travis CI: Fix Emscripten buildPaweł Bylica2017-09-132-26/+26
| | | |
| * | | Travis CI: Do not cache build dirPaweł Bylica2017-09-131-1/+0
|/ / /
* | | Merge pull request #2852 from ssuman/developchriseth2017-09-123-8/+18
|\ \ \ | | | | | | | | This commit will display warning when there is unused function parameter
| * | | Display helpful warning for unused function arguments/return parametersSuman2017-09-123-8/+18
| | | |
* | | | Merge pull request #2891 from ethereum/same-declaration-exponential-errorAlex Beregszaszi2017-09-121-1/+5
|\ \ \ \ | |/ / / |/| | | Do not report overload conflicts for every line excessively
| * | | Do not report overload conflicts for every line excessivelyAlex Beregszaszi2017-09-121-1/+5
|/ / /
* | | Merge pull request #2888 from ethereum/same-declaration-errorAlex Beregszaszi2017-09-121-10/+12
|\ \ \ | | | | | | | | Use secondary source location as a vector in same declaration errors
| * | | Use secondary source location as a vector in same declaration errorsAlex Beregszaszi2017-09-121-10/+12
| | | |
* | | | Merge pull request #2887 from ethereum/missing-functions-listchriseth2017-09-121-5/+7
|\ \ \ \ | | | | | | | | | | Show each unimplemented function in secondary source location
| * | | | Show each unimplemented function in secondary source locationAlex Beregszaszi2017-09-121-5/+7
| |/ / /
* | | | Merge pull request #2880 from ethereum/docs-metadatachriseth2017-09-123-144/+145
|\ \ \ \ | | | | | | | | | | Promote metadata to its own chapter (split from miscellaneous)
| * | | | Promote metadata to its own chapter (split from miscellaneous)Alex Beregszaszi2017-09-113-144/+145
| | | | |
* | | | | Merge pull request #2853 from ethereum/cleanup-asm-streamchriseth2017-09-1210-60/+75
|\ \ \ \ \ | |_|/ / / |/| | | | Split out the JSON functionality from assembly.stream()
| * | | | Simplify assembly printing in CLIAlex Beregszaszi2017-09-111-15/+8
| | | | |
| * | | | Introduce assemblyStringAlex Beregszaszi2017-09-1110-24/+27
| | | | |
| * | | | Do not return the stream in asssemblyStreamAlex Beregszaszi2017-09-116-12/+9
| | | | |
| * | | | Split out the JSON functionality from assembly.stream()Alex Beregszaszi2017-09-1110-46/+67
| | | | |
| * | | | Mark functions static in libevmasmAlex Beregszaszi2017-09-112-3/+4
| |/ / /
* | | | Merge pull request #2881 from ethereum/analysis-testchriseth2017-09-123-6/+6
|\ \ \ \ | | | | | | | | | | Change retrieveContract to take name and not index
| * | | | Change retrieveContract to take name and not indexAlex Beregszaszi2017-09-113-6/+6
| |/ / /
* | | | Merge pull request #2882 from ethereum/eventschriseth2017-09-122-4/+5
|\ \ \ \ | | | | | | | | | | Do not show the same error multiple times for events
| * | | | Do not show the same error multiple times for eventsAlex Beregszaszi2017-09-122-4/+5
| |/ / /
* | | | Merge pull request #2870 from aarongoa/developchriseth2017-09-121-8/+9
|\ \ \ \ | |/ / / |/| | | Add payable constructor for `C` - #2869
| * | | Make `createAndEndowD` payable in contract creation exampleAaron Colaço2017-09-121-8/+9
| | | |
* | | | Merge pull request #2875 from ethereum/travis-badgechriseth2017-09-111-1/+1
|\ \ \ \ | |_|/ / |/| | | Add the Travis build status badge
| * | | Add the Travis build status badgeYoichi Hirai2017-09-071-1/+1
|/ / /
* | | Merge pull request #2857 from ethereum/fixTestrefactorAlex Beregszaszi2017-09-062-5/+5
|\ \ \ | | | | | | | | Fix warning checking in test framework.
| * | | Fix warning checking in test framework.chriseth2017-09-062-5/+5
|/ / /
* | | Merge pull request #2873 from ethereum/largearraychriseth2017-09-062-4/+4
|\ \ \ | | | | | | | | Change array too large error message as it is valid for non-calldata too
| * | | Change array too large error message as it is valid for non-calldata tooAlex Beregszaszi2017-09-062-4/+4
| | | |
* | | | Merge pull request #2842 from ethereum/chriseth-patch-1Alex Beregszaszi2017-09-061-3/+8
|\ \ \ \ | |/ / / |/| | | Explain how to run the tests in more detail.
| * | | Explain how to run the tests in more detail.chriseth2017-09-061-3/+8
| | | |
* | | | Merge pull request #2872 from ethereum/docs-abiAlex Beregszaszi2017-09-051-119/+119
|\ \ \ \ | | | | | | | | | | Convert ABI spec from Markdwon to RST
| * | | | Convert ABI spec from Markdwon to RSTAlex Beregszaszi2017-09-051-119/+119
|/ / / /
* | | | Merge pull request #2871 from ethereum/fixedpointdocschriseth2017-09-052-14/+24
|\ \ \ \ | | | | | | | | | | Explain fixed point types in docs
| * | | | Explain the difference between floating and fixed pointAlex Beregszaszi2017-09-042-5/+6
| | | | |
| * | | | Explain fixed point typesAlex Beregszaszi2017-09-041-0/+9
| | | | |
| * | | | Move fixed after int in docsAlex Beregszaszi2017-09-041-9/+9
| | |/ / | |/| |
* | | | Merge pull request #2854 from ethereum/docs-faqchriseth2017-09-055-93/+60
|\ \ \ \ | |/ / / |/| | | [WIP] Move content from FAQ to proper places
| * | | Mention that different Unicode codepoint can look the sameAlex Beregszaszi2017-09-021-0/+4
| | | |
| * | | Clarify some subtleties of the fallback functionAlex Beregszaszi2017-09-022-34/+18
| | | |
| * | | Document character setAlex Beregszaszi2017-09-022-7/+4
| | | |
| * | | Document caveats about timestamp and blockhashAlex Beregszaszi2017-09-022-18/+12
| | | |
| * | | Document gas/value modifiers with overloadingAlex Beregszaszi2017-09-022-10/+6
| | | |
| * | | Document byte[] vs bytesAlex Beregszaszi2017-09-022-7/+4
| | | |
| * | | Document call/gas modifiers properlyAlex Beregszaszi2017-09-022-17/+12
|/ / /
* | | Merge pull request #2860 from ethereum/noparamsfordefaultedAlex Beregszaszi2017-08-311-4/+4
|\ \ \ | | | | | | | | Remove parameter names for defaulted functions.
| * | | Remove parameter names for defaulted functions.chriseth2017-08-311-4/+4
| | | |
* | | | Merge pull request #2812 from ethereum/removeEscapechriseth2017-08-312-31/+9
|\ \ \ \ | |/ / / |/| | | Remove escape function.
| * | | Use Json::valueToQuotedString directlyAlex Beregszaszi2017-08-291-4/+2
| | | |
| * | | Remove escape function.chriseth2017-08-292-31/+11
| | | |
* | | | Merge pull request #2858 from ethereum/fuzzer-without-optimizerchriseth2017-08-312-4/+14
|\ \ \ \ | |/ / / |/| | | Run fuzzer tests without optimizer too
| * | | Run fuzzer tests without optimizer tooAlex Beregszaszi2017-08-311-0/+7
| | | |
| * | | Add --without-optimizer option to fuzzerAlex Beregszaszi2017-08-311-4/+7
|/ / /
* | | Merge pull request #2847 from ethereum/codegen-docsAlex Beregszaszi2017-08-293-1/+25
|\ \ \ | | | | | | | | Document more of the codegen features
| * | | Document more of the codegen featuresAlex Beregszaszi2017-08-293-1/+25
| | | |
* | | | Merge pull request #2846 from ethereum/refactorTestsAlex Beregszaszi2017-08-293-223/+275
|\ \ \ \ | | | | | | | | | | Extract base from NameAndType and use compiler stack.
| * | | | Extract base from NameAndType and use compiler stack.chriseth2017-08-293-223/+275
| | | | |
* | | | | Merge pull request #2833 from ethereum/statemutability-builtinschriseth2017-08-295-22/+24
|\ \ \ \ \ | | | | | | | | | | | | Mark all built in functions with appropriate statemutability
| * | | | | Swap declaration/statemutability in FunctionType constructorAlex Beregszaszi2017-08-294-11/+8
| | | | | |
| * | | | | Mark all built in functions with appropriate statemutabilityAlex Beregszaszi2017-08-293-12/+17
| | | | | |
* | | | | | Merge pull request #2844 from ethereum/jsoncompilerAlex Beregszaszi2017-08-294-24/+47
|\ \ \ \ \ \ | | | | | | | | | | | | | | Add header for jsonCompiler
| * | | | | | Add header for jsonCompilerAlex Beregszaszi2017-08-294-24/+47
|/ / / / / /
* | | | | | Merge pull request #2843 from ethereum/anonymous-cleanupchriseth2017-08-298-5/+36
|\ \ \ \ \ \ | |_|_|_|/ / |/| | | | | Move all file specific globals to anonymous namespace
| * | | | | Move all file specific globals to anonymous namespaceAlex Beregszaszi2017-08-298-5/+36
| | |_|/ / | |/| | |
* | | | | Merge pull request #2841 from ethereum/evm15-code-numbersGreg Colvin2017-08-291-9/+11
|\ \ \ \ \ | |/ / / / |/| | | | reconcile evm 1.5 instruction numbers with working draft and client