aboutsummaryrefslogtreecommitdiffstats
path: root/ExpressionCompiler.h
Commit message (Collapse)AuthorAgeFilesLines
* Various fixes pertaining to State Variable accessorsLefteris Karapetsas2015-01-291-4/+4
|
* EVM Code for simple accessor function is properly generatedLefteris Karapetsas2015-01-291-2/+4
|
* Fixes after rebasing on developLefteris Karapetsas2015-01-291-2/+1
|
* Work on ExpressionCompiler preparing for Accessors from storageLefteris Karapetsas2015-01-291-0/+8
|
* Merge pull request #805 from LianaHus/deleteStructchriseth2015-01-191-4/+6
|\ | | | | | | | | delete for structs -added functionality to set values to 0 when deleting structure(not for ...
| * - added functionality to set values to 0 when deleting structure(not for ↵liana2015-01-151-4/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | mapping) - added unit test Made some changes after Christian`s review on pull request - remove/edit comments - BoolType and ContractType return VoidType after delete - fixed constructor_arguments test - fixed set to 0 when deleting variable from stack - changed test case to test that
* | Specify value for contract creation.Christian2015-01-141-0/+4
| |
* | Modify gas and value for external function call.Christian2015-01-141-13/+1
|/
* Padding for ABI types.Christian2015-01-101-4/+2
|
* Merge branch 'sol_integerConstants' of ↵Gav Wood2015-01-091-1/+1
|\ | | | | | | https://github.com/chriseth/cpp-ethereum into chriseth-sol_integerConstants
| * Arbitrary precision integer constants.Christian2015-01-081-1/+1
| |
* | Documentation update.Gav Wood2015-01-091-0/+1
|/
* Fix some warnings about uninitialized members.Christian2015-01-071-3/+3
|
* Create contracts.Christian2014-12-151-0/+1
|
* Calls to bare contracts.Christian2014-12-131-0/+20
|
* Merge remote-tracking branch 'ethereum/develop' into sol_swapConstantsChristian2014-12-131-1/+2
|\ | | | | | | | | Conflicts: test/solidityOptimizerTest.cpp
| * Merge remote-tracking branch 'ethereum/develop' into sol_stringsChristian2014-12-111-15/+11
| |\ | | | | | | | | | | | | Conflicts: libsolidity/Types.cpp
| * | String types.Christian2014-12-101-1/+2
| | |
* | | Swap literals to the end if optimizing.Christian2014-12-121-3/+4
| |/ |/|
* | Merge pull request #577 from chriseth/sol_constCleanupchriseth2014-12-111-15/+11
|\ \ | |/ |/| Solidity const cleanup
| * Removed unused members.Christian2014-12-081-4/+0
| |
| * Clear separation between ASTVisitor and ASTConstVisitor and more const ↵Christian2014-12-081-1/+1
| | | | | | | | specifiers.
| * Const AST visitor for the compiler.Christian2014-12-081-10/+10
| |
* | Variable-size stack elements for expression compiler.Christian2014-12-091-2/+3
| |
* | Calling functions of other contracts.Christian2014-12-081-3/+4
|/
* Sending ether.Christian2014-11-261-0/+4
|
* Magic variables.Christian2014-11-241-7/+6
|
* Mapping types.Christian2014-11-141-27/+50
|
* State variables.Christian2014-11-081-13/+41
|
* Type promotion fixes and tests.Christian2014-11-061-1/+3
|
* Proper type promotion and conversion.Christian2014-11-061-1/+9
|
* Renamed file.Christian2014-10-311-2/+2
|
* Contract compiler and also add ExpressionStatement to AST.Christian2014-10-301-0/+79
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.