aboutsummaryrefslogtreecommitdiffstats
path: root/ExpressionCompiler.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Removed superfluous braces.chriseth2014-11-071-2/+0
|
* Re-added some changes lost in merges.Christian2014-11-071-2/+1
|
* Stylistic changes.chriseth2014-11-071-2/+0
|
* Type promotion fixes and tests.Christian2014-11-061-11/+5
|
* Proper type promotion and conversion.Christian2014-11-061-27/+54
|
* Allow implicit type conversions for comparisons.Christian2014-11-061-14/+7
|
* Converted all asserts to exceptions.Christian2014-11-051-29/+29
|
* Some tests and bugfixes for the compiler.Christian2014-11-031-0/+1
|
* Bugfix: Swap before mod and div.Christian2014-11-031-2/+2
|
* Merge remote-tracking branch 'ethereum/develop' into sol_contractCompilerChristian2014-11-011-6/+6
| | | | | | | | | | | | 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
* Renamed file.Christian2014-10-311-0/+1
|
* Contract compiler and also add ExpressionStatement to AST.Christian2014-10-301-0/+408
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.