aboutsummaryrefslogtreecommitdiffstats
path: root/solidityCompiler.cpp
Commit message (Collapse)AuthorAgeFilesLines
* 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