Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Various fixes pertaining to State Variable accessors | Lefteris Karapetsas | 2015-01-29 | 1 | -4/+4 |
| | |||||
* | EVM Code for simple accessor function is properly generated | Lefteris Karapetsas | 2015-01-29 | 1 | -2/+4 |
| | |||||
* | Fixes after rebasing on develop | Lefteris Karapetsas | 2015-01-29 | 1 | -2/+1 |
| | |||||
* | Work on ExpressionCompiler preparing for Accessors from storage | Lefteris Karapetsas | 2015-01-29 | 1 | -0/+8 |
| | |||||
* | Merge pull request #805 from LianaHus/deleteStruct | chriseth | 2015-01-19 | 1 | -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 ↵ | liana | 2015-01-15 | 1 | -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. | Christian | 2015-01-14 | 1 | -0/+4 |
| | | |||||
* | | Modify gas and value for external function call. | Christian | 2015-01-14 | 1 | -13/+1 |
|/ | |||||
* | Padding for ABI types. | Christian | 2015-01-10 | 1 | -4/+2 |
| | |||||
* | Merge branch 'sol_integerConstants' of ↵ | Gav Wood | 2015-01-09 | 1 | -1/+1 |
|\ | | | | | | | https://github.com/chriseth/cpp-ethereum into chriseth-sol_integerConstants | ||||
| * | Arbitrary precision integer constants. | Christian | 2015-01-08 | 1 | -1/+1 |
| | | |||||
* | | Documentation update. | Gav Wood | 2015-01-09 | 1 | -0/+1 |
|/ | |||||
* | Fix some warnings about uninitialized members. | Christian | 2015-01-07 | 1 | -3/+3 |
| | |||||
* | Create contracts. | Christian | 2014-12-15 | 1 | -0/+1 |
| | |||||
* | Calls to bare contracts. | Christian | 2014-12-13 | 1 | -0/+20 |
| | |||||
* | Merge remote-tracking branch 'ethereum/develop' into sol_swapConstants | Christian | 2014-12-13 | 1 | -1/+2 |
|\ | | | | | | | | | Conflicts: test/solidityOptimizerTest.cpp | ||||
| * | Merge remote-tracking branch 'ethereum/develop' into sol_strings | Christian | 2014-12-11 | 1 | -15/+11 |
| |\ | | | | | | | | | | | | | Conflicts: libsolidity/Types.cpp | ||||
| * | | String types. | Christian | 2014-12-10 | 1 | -1/+2 |
| | | | |||||
* | | | Swap literals to the end if optimizing. | Christian | 2014-12-12 | 1 | -3/+4 |
| |/ |/| | |||||
* | | Merge pull request #577 from chriseth/sol_constCleanup | chriseth | 2014-12-11 | 1 | -15/+11 |
|\ \ | |/ |/| | Solidity const cleanup | ||||
| * | Removed unused members. | Christian | 2014-12-08 | 1 | -4/+0 |
| | | |||||
| * | Clear separation between ASTVisitor and ASTConstVisitor and more const ↵ | Christian | 2014-12-08 | 1 | -1/+1 |
| | | | | | | | | specifiers. | ||||
| * | Const AST visitor for the compiler. | Christian | 2014-12-08 | 1 | -10/+10 |
| | | |||||
* | | Variable-size stack elements for expression compiler. | Christian | 2014-12-09 | 1 | -2/+3 |
| | | |||||
* | | Calling functions of other contracts. | Christian | 2014-12-08 | 1 | -3/+4 |
|/ | |||||
* | Sending ether. | Christian | 2014-11-26 | 1 | -0/+4 |
| | |||||
* | Magic variables. | Christian | 2014-11-24 | 1 | -7/+6 |
| | |||||
* | Mapping types. | Christian | 2014-11-14 | 1 | -27/+50 |
| | |||||
* | State variables. | Christian | 2014-11-08 | 1 | -13/+41 |
| | |||||
* | Type promotion fixes and tests. | Christian | 2014-11-06 | 1 | -1/+3 |
| | |||||
* | Proper type promotion and conversion. | Christian | 2014-11-06 | 1 | -1/+9 |
| | |||||
* | Renamed file. | Christian | 2014-10-31 | 1 | -2/+2 |
| | |||||
* | Contract compiler and also add ExpressionStatement to AST. | Christian | 2014-10-30 | 1 | -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. |