aboutsummaryrefslogtreecommitdiffstats
path: root/solidityCompiler.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Do not add at the end of the function selector "loop".Christian2014-12-121-7/+7
|
* Register variably-sized variables on stack.Christian2014-12-081-2/+2
|
* Multi-source and multi-contract compiler.Christian2014-12-041-1/+2
|
* Import directive.Christian2014-12-031-10/+16
|
* Magic variables.Christian2014-11-241-1/+1
|
* Contracts as types and framework for special global variables.Christian2014-11-241-1/+1
|
* Mapping types.Christian2014-11-141-2/+0
|
* Replace function selector jump table by more resilient linear time check.Christian2014-11-101-7/+7
|
* Fixes for warnings. Take note.Gav Wood2014-11-071-1/+1
|
* Type promotion fixes and tests.Christian2014-11-061-4/+4
|
* Compile warnings fixed.Gav Wood2014-11-061-12/+12
|
* Test adjustments.Christian2014-11-031-4/+3
|
* Merge remote-tracking branch 'ethereum/develop' into sol_contractCompilerChristian2014-11-011-2/+2
|\ | | | | | | | | | | | | | | | | | | | | | | Conflicts: libsolidity/AST.cpp libsolidity/AST.h libsolidity/Compiler.cpp libsolidity/Compiler.h libsolidity/NameAndTypeResolver.h libsolidity/Types.cpp solc/main.cpp test/solidityCompiler.cpp
| * Big fixes.Gav Wood2014-10-311-2/+2
| |
| * Further const placement changes.Christian2014-10-301-1/+1
| |
| * Adjustments for the NEG->BNOT change.Christian2014-10-291-3/+1
| |
| * Forgot some asterisks.Christian2014-10-281-1/+3
| |
* | Actual contract creator and add solidity to AlethZero interface.Christian2014-10-311-16/+19
| |
* | Function selector and variable (un)packing.Christian2014-10-311-21/+37
| |
* | Contract compiler and also add ExpressionStatement to AST.Christian2014-10-301-193/+130
| | | | | | | | | | | | | | | | ExpressionStatement functions as glue between Statements and Expressions. This way it is possible to detect when the border between statements and expressions is crossed while walking the AST. Note that ExpressionStatement is not the only border, almost every statement can contains expressions.
* | Compiler for assignments.Christian2014-10-291-5/+57
| |
* | NEG->BNOT changeChristian2014-10-291-3/+1
|/
* Expression compiler.Christian2014-10-251-0/+229