aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #5181 from Mordax/doc-note-windowschriseth2018-10-151-0/+5
|\ | | | | Add extra documentation for running compiler tests on Windows
| * Add extra documentation for running compiler tests on Windowsmordax2018-10-151-0/+5
|/
* Merge pull request #5215 from Mordax/issue-5142chriseth2018-10-153-8/+0
|\ | | | | Removes mention of submodules from docs and build scripts
| * Remove another mentionmordax2018-10-141-1/+0
| |
| * Removing mention of submodules from docs/buildmordax2018-10-142-7/+0
| |
* | Merge pull request #5149 from ethereum/fix_assertion_on_inval_tuple_callchriseth2018-10-153-2/+22
|\ \ | | | | | | Fixes invalid function calls to literals inside tuple assignment's LHS.
| * | Fixes invalid function calls to literals inside tuple assignment's LHS.Christian Parpart2018-10-153-2/+22
| |/
* | Merge pull request #5205 from ethereum/cseAlsoSubstituteVariableschriseth2018-10-153-4/+67
|\ \ | |/ |/| [Yul] Also substitute variables in Common Subexpression Eliminator
| * Also substitute variables in CSE.chriseth2018-10-123-4/+67
|/
* Merge pull request #5127 from ethereum/exprUnbreakerchriseth2018-10-1220-0/+545
|\ | | | | [Yul] Expression joiner.
| * Expression joiner.chriseth2018-10-1220-0/+545
| |
* | Merge pull request #5206 from ethereum/splitConstantsToochriseth2018-10-125-34/+57
|\ \ | | | | | | [Yul] Split constants too
| * | Also split constants.chriseth2018-10-125-34/+57
| |/
* | Merge pull request #5145 from ethereum/hashLinkerchriseth2018-10-1211-20/+114
|\ \ | |/ |/| Hash linker
| * Fix checksum check.chriseth2018-10-121-5/+5
| |
| * More helpful error messages for linker.chriseth2018-10-121-2/+16
| |
| * Change library placeholder to `__$<hash>$__`.chriseth2018-10-124-9/+12
| |
| * Prefix "0x" to library placeholder.chriseth2018-10-121-1/+1
| |
| * Document library placeholder change.chriseth2018-10-122-3/+20
| |
| * Fix directory creation.chriseth2018-10-121-1/+1
| |
| * Use hash for library placeholders.chriseth2018-10-127-9/+69
| |
* | Merge pull request #5203 from ethereum/moveMoreYulTestschriseth2018-10-1293-1271/+1395
|\ \ | |/ |/| Move more yul optimizer tests
| * Move unused pruner tests.chriseth2018-10-1212-129/+113
| |
| * Move expression simplifier tests.chriseth2018-10-1218-178/+158
| |
| * Move rematerialiser tests.chriseth2018-10-1219-179/+292
| |
| * Move main function tests.chriseth2018-10-127-87/+117
| |
| * Move tests for full inliner.chriseth2018-10-129-175/+205
| |
| * Move expression inliner tests.chriseth2018-10-129-95/+124
| |
| * Move function hoister tests.chriseth2018-10-127-85/+97
| |
| * Move function grouper tests.chriseth2018-10-127-85/+102
| |
| * Move expression splitter tests.chriseth2018-10-127-156/+106
| |
| * Move common subexpression eliminator tests.chriseth2018-10-128-102/+81
|/
* Merge pull request #5185 from ethereum/yulOptimizerTestschriseth2018-10-1117-107/+431
|\ | | | | Yul optimizer tests
| * Store test results as artifacts.chriseth2018-10-111-0/+6
| |
| * Remove old disambiguator test.chriseth2018-10-111-105/+0
| |
| * Disambiguator tests.chriseth2018-10-119-0/+159
| |
| * Add Yul optimizer test framework.chriseth2018-10-116-2/+266
|/
* Merge pull request #5179 from ethereum/refactorIsoltestchriseth2018-10-115-75/+136
|\ | | | | Slight refactor of isoltest to add new automated yul optimizer tests
| * Combine test path discovery.chriseth2018-10-115-41/+93
| |
| * Extract test suite runs.chriseth2018-10-111-36/+39
| |
| * Extract function.chriseth2018-10-111-19/+25
|/
* Merge pull request #5196 from ethereum/chriseth-patch-2chriseth2018-10-111-1/+1
|\ | | | | Fix typo in yul example
| * Fix typo in yul examplechriseth2018-10-111-1/+1
| |
* | Merge pull request #5197 from ethereum/array-index-testschriseth2018-10-115-0/+31
|\ \ | | | | | | More array index tests
| * | Adds syntax tests for array index access.Erik Kundt2018-10-115-0/+31
| | |
* | | Merge pull request #5199 from lazaridiscom/developchriseth2018-10-111-0/+1
|\ \ \ | |/ / |/| | ignore Visual Studio Code stuff
| * | ignore Visual Studio Code stuffLazaridis2018-10-111-0/+1
|/ /
* | Merge pull request #5195 from ethereum/unsigned-array-indexchriseth2018-10-117-3/+47
|\ \ | |/ |/| Do not crash on non-unsigned array index
| * Fixes crash on non-unsigned array index.Erik Kundt2018-10-117-3/+47
| |
* | Merge pull request #5014 from mestorlx/developchriseth2018-10-117-2/+105
|\ \ | | | | | | Improve error message for lookup in function types
| * | Improved error message for lookup in function types.Martin Diz2018-10-107-2/+105
|/ /
* | Merge pull request #5186 from ethereum/renameBreakerchriseth2018-10-103-13/+13
|\ \ | | | | | | Rename ExpressionBreaker to ExpressionSplitter.
| * | Rename ExpressionBreaker to ExpressionSplitter.chriseth2018-10-103-13/+13
| | |
* | | Merge pull request #5132 from ethereum/genericVisitorchriseth2018-10-102-25/+130
|\ \ \ | | | | | | | | Generic visitor.
| * | | Generic visitor.chriseth2018-10-092-25/+130
| | | |
* | | | Merge pull request #5134 from ethereum/fuzzer-input-filechriseth2018-10-101-11/+27
|\ \ \ \ | |_|/ / |/| | | solfuzzer: adds --input-file=FILENAME command line argument (defaulting to stdin)
| * | | adds --input-file=FILENAME to solfuzzerChristian Parpart2018-10-101-11/+27
| | | |
* | | | Merge pull request #5163 from ethereum/docDeploymentchriseth2018-10-101-1/+11
|\ \ \ \ | | | | | | | | | | Explain deployment.
| * | | | Explain deployment.chriseth2018-10-091-1/+11
| | | | |
* | | | | Merge pull request #5183 from ethereum/fixCreate2chriseth2018-10-102-10/+10
|\ \ \ \ \ | | | | | | | | | | | | Fix create2
| * | | | | Fix create2chriseth2018-10-102-10/+10
| | |_|_|/ | |/| | |
* | | | | Merge pull request #3834 from ethereum/docsArrayStorageLayoutchriseth2018-10-101-6/+23
|\ \ \ \ \ | | | | | | | | | | | | [DOCS] Update storage layout
| * | | | | Documents storage layout of mappings and dynamic arrays.Erik Kundt2018-10-101-6/+23
| |/ / / /
* | | | | Merge pull request #5184 from ethereum/viewFunctionDocschriseth2018-10-102-1/+30
|\ \ \ \ \ | |/ / / / |/| | | | Library view functions
| * | | | Adds more specific explanation of library view functions calls.Erik Kundt2018-10-101-2/+4
| | | | |
| * | | | Documents library view functions and adds unit test.Erik Kundt2018-10-102-1/+28
| |/ / /
* | | | Merge pull request #5180 from ethereum/cpp-cleanupchriseth2018-10-1013-16/+13
|\ \ \ \ | |_|/ / |/| | | Some C++ cleanup
| * | | Do not require ctype/stdio if not neededAlex Beregszaszi2018-10-105-5/+2
| | | |
| * | | Use nullptr instead of NULL where appropriateAlex Beregszaszi2018-10-102-3/+3
| | | |
| * | | Change find to use a single characterAlex Beregszaszi2018-10-101-1/+1
| | | |
| * | | Use empty() instead of size() == 0Alex Beregszaszi2018-10-097-7/+7
| | | |
* | | | Merge pull request #5076 from ethereum/exprBreakerchriseth2018-10-095-0/+477
|\ \ \ \ | | | | | | | | | | [Yul] Expression breaker.
| * | | | Expression breaker.chriseth2018-10-095-0/+477
| | |_|/ | |/| |
* | | | Merge pull request #5137 from ethereum/fix_5052chriseth2018-10-093-9/+21
|\ \ \ \ | |/ / / |/| | | Fixes #5052 (very large hex literals wrongly interpreted)
| * | | Fixes large rational number literals being wrongly interpreted.Christian Parpart2018-10-093-9/+21
|/ / / | | | | | | | | | Fixes #5052.
* | | Merge pull request #5124 from lazaridiscom/1802-hex-error-reportingchriseth2018-10-094-7/+16
|\ \ \ | | | | | | | | use Token type for hex error, draft re #1802
| * | | provide general hex-literal error message, fixes #1802Lazaridis2018-10-094-7/+16
| |/ / | | | | | | | | | dummy
* | | Merge pull request #5174 from tomusdrw/patch-1chriseth2018-10-091-3/+4
|\ \ \ | | | | | | | | Clarify contract creation transaction
| * | | Clarify contract creation transactionTomasz Drwięga2018-10-091-3/+4
| | | | | | | | | | | | The change clarifies how contracts are deployed. The docs state that it's a transaction sent to `0` address (which is incorrect), the PR changes that to emphasize that the recipient is not set.
* | | | Merge pull request #5171 from ethereum/fixCommandlineTestschriseth2018-10-097-9/+4
|\ \ \ \ | |/ / / |/| | | Fix commandline tests for release version.
| * | | Fix commandline tests for release version.chriseth2018-10-097-9/+4
|/ / /
* | | Merge pull request #5170 from ethereum/minorFixesAlex Beregszaszi2018-10-094-4/+4
|\ \ \ | |/ / |/| | Minor fixes
| * | Fix version pragma in documentation.chriseth2018-10-093-3/+3
| | |
| * | Fix pragma error suggestion.chriseth2018-10-091-1/+1
|/ /
* | Merge pull request #5172 from ethereum/fixKindAlex Beregszaszi2018-10-093-1/+6
|\ \ | | | | | | Fix kind
| * | Fix ast json test for function kind.chriseth2018-10-092-1/+2
| | |
| * | Add entry into the breaking changes list.chriseth2018-10-091-0/+4
|/ /
* | Merge pull request #4734 from ethereum/astUpdatechriseth2018-10-0931-11/+575
|\ \ | |/ |/| JSON AST: replace ``isConstructor`` by ``kind`` which also supports fallbacks
| * Restore ``isConstructor`` in the legacy AST.Daniel Kirchner2018-09-1114-0/+15
| |
| * Add new test cases.Daniel Kirchner2018-09-119-0/+548
| |
| * Replace ``isConstructor`` field in the JSON AST by a ``kind`` field.Daniel Kirchner2018-09-1122-21/+22
| |
* | Merge pull request #5157 from ethereum/soltest-testpathchriseth2018-10-081-0/+23
|\ \ | | | | | | soltest: provides sane defaults for --testpath command line option
| * | soltest: provides sane defaults for --testpath command line optionChristian Parpart2018-10-081-0/+23
|/ /
* | Merge pull request #5148 from ethereum/chriseth-patch-2Alex Beregszaszi2018-10-061-1/+1
|\ \ | | | | | | Remove non-ascii quotes.
| * | Remove non-ascii quotes.chriseth2018-10-051-1/+1
| | |
* | | Merge pull request #5150 from ethereum/docs-linksAlex Beregszaszi2018-10-061-1/+2
|\ \ \ | |/ / |/| | Docs: Add link to string literals
| * | Add link to string literalsChris Ward2018-10-051-1/+2
|/ /
* | Merge pull request #4952 from ethereum/docs-544-event-datachriseth2018-10-052-33/+72
|\ \ | | | | | | Clarifying docs on event storage
| * | Update docs on event data and logsChris Ward2018-10-052-33/+72
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updates from comments Clarify code comments and add an event output example Clarification from review Updated with information from @gumb0 Add clarifier Updates from review Remove link Update example code
* | Merge pull request #5044 from ethereum/updateAssemblychriseth2018-10-041-41/+43
|\ \ | | | | | | [DOCS] Update assembly.
| * | Adds note about Standalone assembly.Erik Kundt2018-10-041-4/+6
| | |
| * | [DOCS] Update assembly.chriseth2018-10-041-41/+41
|/ /
* | Merge pull request #5126 from ethereum/chriseth-patch-1chriseth2018-10-041-3/+0
|\ \ | | | | | | [DOCS] Remove duplicate statement about pure enforcement.
| * | Remove duplicate statement about pure enforcement.chriseth2018-10-011-3/+0
| | |
* | | Merge pull request #5144 from ethereum/fixHexTypochriseth2018-10-048-11/+12
|\ \ \ | | | | | | | | Fix typos.
| * | | Fix typos.chriseth2018-10-048-11/+12
|/ / /
* | | Merge pull request #5073 from IIIIllllIIIIllllIIIIllllIIIIllllIIIIll/patch-4chriseth2018-10-041-6/+7
|\ \ \ | | | | | | | | separate out a new "Design Criteria" section from "Formal Specification"
| * | | separate out a new "Design Criteria" section from "Formal Specification"Li Xuanji2018-10-041-6/+7
| | | |
* | | | Merge pull request #5119 from ethereum/docs-contributing-dependencieschriseth2018-10-041-20/+32
|\ \ \ \ | | | | | | | | | | Add Linux dependencies and move
| * | | | Add Linux dependencies and moveChris Ward2018-09-301-20/+32
| | | | |
* | | | | Merge pull request #5140 from dm4/docs-fix-inline-code-syntaxchriseth2018-10-041-1/+1
|\ \ \ \ \ | | | | | | | | | | | | [DOCS] Add missing backtick for inline code syntax.
| * | | | | [DOCS] Add missing backtick for inline code syntax.dm42018-10-031-1/+1
|/ / / / /
* | | | | Merge pull request #5138 from ethereum/fixXcodechriseth2018-10-021-2/+2
|\ \ \ \ \ | | | | | | | | | | | | Try newer version of xcode for MacOS.
| * | | | | Try newer version of xcode for MacOS.chriseth2018-10-021-2/+2
| | | | | |
* | | | | | Merge pull request #5125 from ethereum/fix_address_with_underscoreschriseth2018-10-025-6/+14
|\ \ \ \ \ \ | |/ / / / / |/| | | | | Fixes #5051 (introduced in #4684), effectively allowing underscores in address literals.
| * | | | | Fixes #5051 (introduced in #4684), effectively allowing underscores in ↵Christian Parpart2018-10-025-6/+14
|/ / / / / | | | | | | | | | | | | | | | address literals.
* | | | | Merge pull request #5110 from codemascot/libevmasm/Assembly.cppchriseth2018-10-021-2/+11
|\ \ \ \ \ | | | | | | | | | | | | Use 'switch' instead of 'else if'
| * | | | | Use 'switch' instead of 'else if'Khan M Rashedun-Naby2018-09-271-2/+11
| | | | | |
* | | | | | Merge pull request #5131 from Flash-Git/patch-1chriseth2018-10-021-1/+1
|\ \ \ \ \ \ | |_|_|_|/ / |/| | | | | Changed pragma explanation to match example
| * | | | | Changed pragma explanation to match exampleJ Quinn2018-10-021-1/+1
|/ / / / /
* | | | | Merge pull request #5084 from ethereum/updateContributingchriseth2018-10-011-34/+44
|\ \ \ \ \ | | | | | | | | | | | | [DOCS] Update contributing.
| * | | | | fixup! fixup! fixup! [DOCS] Update contributing.chriseth2018-10-011-3/+4
| | | | | |
| * | | | | fixup! fixup! [DOCS] Update contributing.chriseth2018-10-011-3/+4
| | | | | |
| * | | | | fixup! [DOCS] Update contributing.chriseth2018-09-271-16/+22
| | | | | |
| * | | | | [DOCS] Update contributing.chriseth2018-09-271-22/+24
| | | | | |
* | | | | | Merge pull request #4962 from anurag-git/anurag_issue_3667-1chriseth2018-10-018-30/+5
|\ \ \ \ \ \ | | | | | | | | | | | | | | Removed default case from "ExpressionCompiler::visit(FunctionCall...)".
| * | | | | | Removing extra default cases to force compile time error, instead of runtime.Anurag Dashputre2018-09-307-28/+5
| | | | | | |
| * | | | | | Removed default case from "ExpressionCompiler::visit(FunctionCall...)".Anurag Dashputre2018-09-131-2/+0
| | | | | | |
* | | | | | | Merge pull request #5117 from ethereum/yul_grammarchriseth2018-10-011-0/+1
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | [DOCS] Yul grammar: missing If in Block rule
| * | | | | | | Missing If in Block ruleLeonardo Alt2018-09-301-0/+1
| | |_|_|/ / / | |/| | | | |
* | | | | | | Merge pull request #5113 from ethereum/compilerstack-datagaschriseth2018-10-011-2/+1
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Use GasEstimator::dataGas in CompilerStack
| * | | | | | | Use GasEstimator::dataGas in CompilerStackAlex Beregszaszi2018-09-281-2/+1
| | | | | | | |
* | | | | | | | Merge pull request #5104 from ethereum/fuzzerchriseth2018-10-011-45/+26
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Do not use compileJSON wrapper in the fuzzer
| * | | | | | | | Do not use compileJSON wrapper in the fuzzerAlex Beregszaszi2018-09-291-45/+26
| | |/ / / / / / | |/| | | | | |
* | | | | | | | Merge pull request #5115 from mestorlx/cleancirclecichriseth2018-10-012-4/+16
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | removed stray (B in CI test output
| * | | | | | | | removed stray (B in CI test outputMartin Diz2018-09-292-4/+16
| | |_|_|_|_|/ / | |/| | | | | |
* | | | | | | | Merge pull request #5075 from ethereum/fixInlinerchriseth2018-10-012-0/+40
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | [Yul] Fix inliner
| * | | | | | | | Fix for inlining inside conditions.chriseth2018-10-012-30/+35
| | | | | | | | |
| * | | | | | | | Tests for inlining inside condition.chriseth2018-09-251-0/+35
| | | | | | | | |
* | | | | | | | | Merge pull request #5114 from ethereum/assembly-docschriseth2018-10-012-2/+12
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Improve the create2 description in assembly.rst (and include in yul.rst)
| * | | | | | | | | Include create2/extcodehash in yul.rstAlex Beregszaszi2018-09-281-0/+8
| | | | | | | | | |
| * | | | | | | | | Improve the create2 description in assembly.rstAlex Beregszaszi2018-09-281-2/+4
| | |_|/ / / / / / | |/| | | | | | |
* | | | | | | | | Merge pull request #5123 from ethereum/docs-contracts-fixesAlex Beregszaszi2018-09-301-2/+2
|\ \ \ \ \ \ \ \ \ | |/ / / / / / / / |/| | | | | | | | Fix issues introduced from PR #5043
| * | | | | | | | Fix issues introduced from PR #5043Chris Ward2018-09-301-2/+2
|/ / / / / / / /
* | | | | | | | Merge pull request #4676 from jwasinger/extcodehashAlex Beregszaszi2018-09-289-3/+42
|\ \ \ \ \ \ \ \ | |_|_|/ / / / / |/| | | | | | | Add support for EXTCODEHASH
| * | | | | | | Add extcodehash to the assembly documentationAlex Beregszaszi2018-09-261-2/+4
| | | | | | | |
| * | | | | | | Add LLL tests for EXTCODEHASHAlex Beregszaszi2018-09-261-0/+4
| | | | | | | |
| * | | | | | | Set the price of EXTCODEHASH properlyAlex Beregszaszi2018-09-262-2/+4
| | | | | | | |
| * | | | | | | Add test for extcodehashAlex Beregszaszi2018-09-261-0/+13
| | | | | | | |
| * | | | | | | Add assembly support for EXTCODEHASH (EIP-1052)Jared Wasinger2018-09-266-1/+19
| | | | | | | |
* | | | | | | | Merge pull request #5037 from ethereum/chriseth-patch-3Erik Kundt2018-09-284-8/+25
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | PR Template: Ask to delete the instructions
| * | | | | | | | Put instructions in comments.chriseth2018-09-274-8/+25
| | | | | | | | |
* | | | | | | | | Merge pull request #5078 from ethereum/secDocchriseth2018-09-271-9/+12
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | [DOCS] Security updates.
| * | | | | | | | | [DOCS] Security updates.chriseth2018-09-271-9/+12
|/ / / / / / / / /
* | | | | | | | | Merge pull request #5111 from ethereum/pitfallTwosComplementchriseth2018-09-272-0/+22
|\ \ \ \ \ \ \ \ \ | |_|_|_|_|_|/ / / |/| | | | | | | | Pitfalls regarding over/underflows
| * | | | | | | | Pitfalls regarding over/underflowschriseth2018-09-272-0/+22
|/ / / / / / / /
* | | | | | | | Merge pull request #5108 from ethereum/payableWithdrawalchriseth2018-09-272-1/+11
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Explain address payable and withdraw.
| * | | | | | | | Explain address payable and withdraw.chriseth2018-09-272-1/+11
| | |_|_|_|_|/ / | |/| | | | | |
* | | | | | | | Merge pull request #5098 from ethereum/add-mojavechriseth2018-09-272-1/+5
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Add Mojave to dependencies script
| * | | | | | | | Add Mojave to dependencies scriptChris Ward2018-09-272-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add changelog entry Moved changelog item Updates from review
* | | | | | | | | Merge pull request #5032 from ethereum/moreRefchriseth2018-09-271-38/+78
|\ \ \ \ \ \ \ \ \ | |_|/ / / / / / / |/| | | | | | | | [DOCS] More on reference types.
| * | | | | | | | [DOCS] More on reference types.chriseth2018-09-271-38/+78
|/ / / / / / / /
* | | | | | | | Merge pull request #5087 from ethereum/semantics4Alex Beregszaszi2018-09-271-1/+14
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | [DOCS] Semantics of negation.
| * | | | | | | | [DOCS] Semantics of negation.chriseth2018-09-271-1/+14
| | | | | | | | |
* | | | | | | | | Merge pull request #5101 from ethereum/docs-return-metadata-notechriseth2018-09-271-6/+7
|\ \ \ \ \ \ \ \ \ | |/ / / / / / / / |/| | | | | | | | Return note taken from metadata and reorder
| * | | | | | | | Return note taken from metadata and reorderChris Ward2018-09-271-6/+7
| | | | | | | | |
* | | | | | | | | Merge pull request #5099 from ethereum/standard-json-optimiserchriseth2018-09-272-4/+84
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Be more strict about values in the optimizer block in StandardJSON
| * | | | | | | | | Be more strict about values in the optimizer block in StandardJSONAlex Beregszaszi2018-09-262-4/+84
| | | | | | | | | |
* | | | | | | | | | Merge pull request #5085 from ethereum/updatefaqAlex Beregszaszi2018-09-271-12/+16
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | [DOCS] Update FAQ
| * | | | | | | | | | [DOCS] Update FAQchriseth2018-09-261-12/+16
| | |_|_|_|/ / / / / | |/| | | | | | | |
* | | | | | | | | | Merge pull request #5080 from ethereum/docMetaAlex Beregszaszi2018-09-271-3/+12
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | [DOCS] Update metadata.
| * | | | | | | | | | [DOCS] Update metadata.chriseth2018-09-271-3/+12
|/ / / / / / / / / /
* | | | | | | | | | Merge pull request #5100 from ethereum/docs-fixedpointAlex Beregszaszi2018-09-271-3/+4
|\ \ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / / |/| | | | | | | | | Rename remainder to modulo and update fixed point documentation
| * | | | | | | | | Remove unary + from floating point types documentationAlex Beregszaszi2018-09-271-1/+1
| | | | | | | | | |
| * | | | | | | | | Make the exponentiation 0**0 note a real RST noteAlex Beregszaszi2018-09-271-1/+2
| | | | | | | | | |
| * | | | | | | | | Rename remainder to moduloAlex Beregszaszi2018-09-271-2/+2
|/ / / / / / / / /
* | | | | | | | | Merge pull request #5006 from ethereum/modSemanticschriseth2018-09-261-3/+19
|\ \ \ \ \ \ \ \ \ | |/ / / / / / / / |/| | | | | | | | Document modulo semantics
| * | | | | | | | Documents modulus semantics.Erik Kundt2018-09-261-3/+19
| | | | | | | | |
* | | | | | | | | Merge pull request #4995 from ethereum/docs-2180-improve-introductionchriseth2018-09-262-8/+12
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Docs: Add content from old Solidity wiki
| * | | | | | | | | Add content from old Solidity wikiChris Ward2018-09-262-8/+12
| | |_|/ / / / / / | |/| | | | | | |
* | | | | | | | | Merge pull request #5089 from ethereum/gasmeterAlex Beregszaszi2018-09-264-5/+16
|\ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / |/| | | | | | | | Small pathgasmeter cleanups
| * | | | | | | | Some cleanups in GasMeterAlex Beregszaszi2018-09-261-2/+2
| | | | | | | | |
| * | | | | | | | Add PathGasMeter.estimateMax helperAlex Beregszaszi2018-09-262-3/+12
| | | | | | | | |
| * | | | | | | | Add explanation to GasMeter::dataGasAlex Beregszaszi2018-09-261-0/+2
| | | | | | | | |
* | | | | | | | | Merge pull request #5094 from ethereum/evmasm-groupingchriseth2018-09-262-24/+33
|\ \ \ \ \ \ \ \ \ | |_|/ / / / / / / |/| | | | | | | | Group LLL only assembly features in libevmasm
| * | | | | | | | Group LLL only assembly features in libevmasmAlex Beregszaszi2018-09-261-11/+18
| | | | | | | | |
| * | | | | | | | Group append() functions in libevmasmAlex Beregszaszi2018-09-262-15/+17
| | | | | | | | |
* | | | | | | | | Merge pull request #5079 from ethereum/usingUpdateAlex Beregszaszi2018-09-261-12/+26
|\ \ \ \ \ \ \ \ \ | |_|/ / / / / / / |/| | | | | | | | [DOCS] Update "using the compiler".
| * | | | | | | | [DOCS] Update "using the compiler".chriseth2018-09-261-12/+26
|/ / / / / / / /
* | | | | | | | Merge pull request #5061 from ethereum/fixedSizeArrayLengthchriseth2018-09-267-2/+38
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Disallow fixed-size arrays with zero length
| * | | | | | | | Updates breaking changes documentation.Erik Kundt2018-09-261-0/+2
| | | | | | | | |
| * | | | | | | | Removes unnecessary check of array type.Erik Kundt2018-09-261-3/+1
| | | | | | | | |
| * | | | | | | | Simplifies zero-length check for fixed-size arrays.Erik Kundt2018-09-221-3/+3
| | | | | | | | |
| * | | | | | | | Updates changelog.Erik Kundt2018-09-221-0/+2
| | | | | | | | |
| * | | | | | | | Moves length check to reference resolver.Erik Kundt2018-09-227-13/+36
| | | | | | | | |
| * | | | | | | | Disallows fixed-size multidim. arrays with zero-length.Erik Kundt2018-09-222-0/+11
| | | | | | | | |
* | | | | | | | | Merge pull request #5092 from ethereum/create2-evmversionchriseth2018-09-264-18/+14
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | CREATE2 is part of Constantinople now
| * | | | | | | | | CREATE2 is part of Constantinople nowAlex Beregszaszi2018-09-264-18/+14
| | |/ / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | Also add hasCreate2 to EVMVersion
* | | | | | | | | Merge pull request #5093 from liangdzou/code_refactoringchriseth2018-09-261-3/+5
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | code refactoring
| * | | | | | | | | code refactoringliangdzou2018-09-261-3/+5
| |/ / / / / / / /
* | | | | | | | | Merge pull request #5091 from ethereum/readme-helloworldAlex Beregszaszi2018-09-261-1/+3
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Fix the HelloWorld example in the readme
| * | | | | | | | | Fix the HelloWorld example in the readmeAlex Beregszaszi2018-09-261-1/+3
| |/ / / / / / / /
* | | | | | | | | Merge pull request #5095 from ethereum/type-assertionsAlex Beregszaszi2018-09-261-2/+2
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Use better assertion messages for RationalNumberType::literalValue
| * | | | | | | | | Use better assertion messages for RationalNumberType::literalValueAlex Beregszaszi2018-09-261-2/+2
| |/ / / / / / / /
* | | | | | | | | Merge pull request #5090 from ethereum/libevmasm-logAlex Beregszaszi2018-09-262-2/+13
|\ \ \ \ \ \ \ \ \ | |/ / / / / / / / |/| | | | | | | | Add helpers for the LOG instruction in libevmasm
| * | | | | | | | Add helpers for the LOG instructionAlex Beregszaszi2018-09-262-2/+13
|/ / / / / / / /
* | | | | | | | Merge pull request #5082 from ethereum/abiUpdateAlex Beregszaszi2018-09-261-8/+8
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | [DOCS] Update abi.
| * | | | | | | | [DOCS] Update abi.chriseth2018-09-261-8/+8
| | |_|_|/ / / / | |/| | | | | |
* | | | | | | | Merge pull request #5083 from ethereum/updatePatternsAlex Beregszaszi2018-09-261-2/+2
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | [DOCS] Update common patterns.
| * | | | | | | | [DOCS] Update common patterns.chriseth2018-09-261-2/+2
| |/ / / / / / /
* | | | | | | | Merge pull request #5088 from ethereum/morePragmasAlex Beregszaszi2018-09-261-0/+13
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | [DOCS] Some more explanation about pragmas.
| * | | | | | | | [DOCS] Some more explanation about pragmas.chriseth2018-09-261-0/+13
| | | | | | | | |
* | | | | | | | | Merge pull request #4193 from ethereum/050-versionAlex Beregszaszi2018-09-2621-113/+116
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Set version to 0.5.0-develop
| * | | | | | | | | Set 0.5.x specific example code to be compilable with >0.4.99 <0.6.0 (e.g. ↵Alex Beregszaszi2018-09-268-20/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 0.5.x only)
| * | | | | | | | | Update version pragma in all documentation examplesAlex Beregszaszi2018-09-2614-87/+88
| | | | | | | | | |
| * | | | | | | | | Better regex for finding version pragmas and replace it with >=0.0Alex Beregszaszi2018-09-262-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There is a bug which stops ^0 from working.
| * | | | | | | | | Automatically replace version pragmas in compilation testsAlex Beregszaszi2018-09-261-0/+2
| | | | | | | | | |
| * | | | | | | | | Require 0.5.0 in contract testsAlex Beregszaszi2018-09-263-3/+3
| | | | | | | | | |
| * | | | | | | | | Turn on patch to replace version pragmas for ZeppelinAlex Beregszaszi2018-09-261-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | An also replace every single one of them with ^0
| * | | | | | | | | Set version to 0.5.0-developAlex Beregszaszi2018-09-261-1/+1
| |/ / / / / / / /
* | | | | | | | | Merge pull request #5086 from nventuro/patch-1chriseth2018-09-261-1/+1
|\ \ \ \ \ \ \ \ \ | |/ / / / / / / / |/| | | | | | | | Removed extra whitespace.
| * | | | | | | | Removed extra whitespace.Nicolás Venturo2018-09-261-1/+1
| |/ / / / / / /
* | | | | | | | Merge pull request #5022 from ethereum/lastValuechriseth2018-09-261-6/+42
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | | [DOCS] Last part of value types.
| * | | | | | | Last part of value types.chriseth2018-09-191-6/+42
| | | | | | | |
* | | | | | | | Merge pull request #5034 from liangdzou/fix_test_format_issuechriseth2018-09-251-2/+4
|\ \ \ \ \ \ \ \ | |_|_|_|_|/ / / |/| | | | | | | fix format issue for test files to enable the format checker in PR #5027
| * | | | | | | fix format issue for test filesliangdzou2018-09-241-2/+4
| | |/ / / / / | |/| | | | |
* | | | | | | Merge pull request #4925 from wbt/patch-2chriseth2018-09-241-1/+1
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Clarify docs around reserved memory byte ranges
| * | | | | | | Clarify docs around reserved memory byte rangeswbt2018-09-241-1/+1
| | |_|_|/ / / | |/| | | | | | | | | | | | | | | | | | | Minor documentation issue to improve reading flow as it goes from talking about a specified number of 32-byte slots being reserved to giving numbers which refer to byte ranges within the space of memory resulting from the union of those slots.
* | | | | | | Merge pull request #5043 from ethereum/updateContractsSectionchriseth2018-09-241-37/+64
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | [DOCS] Update contracts section.
| * | | | | | | Review comments [to be squashed]chriseth2018-09-241-9/+13
| | | | | | | |
| * | | | | | | [DOCS] Update contracts section.chriseth2018-09-241-36/+59
| | | | | | | |
* | | | | | | | Merge pull request #5039 from ethereum/controlStructures2chriseth2018-09-241-5/+4
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | [DOCS] Update control structures (2).
| * | | | | | | | [DOCS] Update control structures (2).chriseth2018-09-241-5/+4
| | |/ / / / / / | |/| | | | | |
* | | | | | | | Merge pull request #5038 from ethereum/controlStructures1chriseth2018-09-241-26/+39
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | [DOCS] Control structures 1.
| * | | | | | | | [DOCS] Control structures 1.chriseth2018-09-241-26/+39
| | |/ / / / / / | |/| | | | | |
* | | | | | | | Merge pull request #5063 from ethereum/standard-json-bugchriseth2018-09-241-2/+2
|\ \ \ \ \ \ \ \ | |_|/ / / / / / |/| | | | | | | Fix typo in parsing/writing JSON error in StandardCompiler
| * | | | | | | Fix typo in parsing/writing JSON error in StandardCompilerAlex Beregszaszi2018-09-221-2/+2
| | | | | | | |
* | | | | | | | Merge pull request #5003 from herrBez/cleanUpdatedchriseth2018-09-2412-0/+106
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Add syntax tests to fix #4627
| * | | | | | | | Add syntax tests to augment the test coverage ofherrBez2018-09-2112-0/+106
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | libsolidity/parsing/Scanner.cpp and libsolidity/parsing/Scanner.h Fix #4627 and PR #5003. - Add multiline comment test - Add upper case hex literal test - Add test for unicode escapes - Add test for strings with escaped newlines - Add test for string escapes - Add test for strings that do not terminate before end of file - Add test for unterminated blocks
* | | | | | | | | Merge pull request #5045 from ethereum/updateMiscchriseth2018-09-241-21/+21
|\ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / |/| | | | | | | | [DOCS] Update misc.
| * | | | | | | | [DOCS] Update misc.chriseth2018-09-211-21/+21
| | | | | | | | |
* | | | | | | | | Merge pull request #5025 from ethereum/refTypeschriseth2018-09-241-8/+14
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | [DOCS] Update reference types.
| * | | | | | | | | [DOCS] Update reference types.chriseth2018-09-211-8/+14
| | | | | | | | | |
* | | | | | | | | | Merge pull request #5041 from liangdzou/fix_typo_in_docchriseth2018-09-242-2/+2
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | fix typo in docs and comments
| * | | | | | | | | | fix typoliangdzou2018-09-212-2/+2
| | | | | | | | | | |
* | | | | | | | | | | Merge pull request #5027 from liangdzou/format_checker_if_for_statementschriseth2018-09-243-18/+35
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | add format test for if/for statements
| * | | | | | | | | | | enhance test_trailing_whitespace to test_check_style: several format rules ↵liangdzou2018-09-203-18/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | for if/for are introduced
* | | | | | | | | | | | Merge pull request #5066 from rnaby/l/a/SemVerHandler.cppchriseth2018-09-241-17/+22
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | SWITCH is better than ELSE..IF I think
| * | | | | | | | | | | | Use 'switch' instead of 'if..else if'Khan M Rashedun-Naby2018-09-241-17/+22
|/ / / / / / / / / / / /
* | | | | | | | | | | | Merge pull request #5050 from ethereum/standard-json-crashesAlex Beregszaszi2018-09-212-3/+11
|\ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|/ / / / / / |/| | | | | | | | | | | Add proper error reporting when invalid settings are provided in StandardJSON