aboutsummaryrefslogtreecommitdiffstats
path: root/Compiler.h
Commit message (Collapse)AuthorAgeFilesLines
* to include source lines in output stream AssemblyItem's appropriate function ↵Liana Husikyan2015-03-051-2/+5
| | | | is now receiving the map of fileNames to sourceCodes as argument.
* Implemented passing arguments to the base constructor.Liana Husikyan2015-03-021-3/+4
|
* Tighter coupling for Assembly items retrievalLefteris Karapetsas2015-02-251-3/+6
| | | | - Exposing only assembly items, not the entire compiler context
* Styling changes for SourceLocation and friendsLefteris Karapetsas2015-02-251-0/+1
|
* Simple Assembly Locations testLefteris Karapetsas2015-02-251-0/+2
| | | | - Also adding some helper functions to SourceLocation
* Stack height checks and fix.Christian2015-02-231-1/+1
|
* Inline member initialisationLiana Husikyan2015-02-211-1/+2
| | | | | renamed VariableDefinition class to VariableDeclarationStatement added tests
* Merge pull request #1074 from arkpar/mix_codemodelGav Wood2015-02-181-0/+2
|\ | | | | Mix: Allow more than one contract
| * allow more than one contractarkpar2015-02-171-0/+2
| |
* | Unpacking of dynamically sized arguments.Christian2015-02-171-2/+2
|/
* Super keyword.Christian2015-01-291-7/+1
|
* EVM Code for simple accessor function is properly generatedLefteris Karapetsas2015-01-291-1/+1
|
* All interface functions are external.Lefteris Karapetsas2015-01-291-0/+2
|
* Work in progress for state variable accessorsLefteris Karapetsas2015-01-291-4/+4
| | | | | | | | | - Changed the code so that a generic declaration with the combination of a function type can be used wherer a function definition was used before - Since using an std::pair everywhere is really tiring with this commit I am in the process of abstracting it into a function
* Modifier overrides and callgraph analysis.Christian2015-01-261-1/+2
|
* Compilation of function modifiers.Christian2015-01-261-2/+11
|
* Include virtual function overrides in constructor context.Christian2015-01-201-1/+4
|
* Call constructors of base classes.Christian2015-01-201-4/+5
|
* Magic variables are only needed durinng name and type resolution, not during ↵Christian2015-01-201-3/+3
| | | | compilation.
* A first version of Natspec warning popupLefteris Karapetsas2015-01-131-0/+2
| | | | | | | - Runtime Contract code hash can now be retrieved from the Compiler - Using the hash the Natspec handler stores and later retrieves Natspec JSON for a given contract.
* Fix some warnings about uninitialized members.Christian2015-01-071-1/+1
|
* Merge pull request #623 from chriseth/sol_constructorCheckschriseth2014-12-171-3/+9
|\ | | | | Checks for the constructor and ability to call functions
| * Add functions needed by constructor.Christian2014-12-171-3/+9
| |
* | Adding a ForStatement solidity AST Node.Lefteris Karapetsas2014-12-171-0/+1
|/ | | | | | | - Adding ForStatement node - Implemented Parsing for ForStatement - A simple parsing test for the ForStatement - Work in progress
* Create contracts.Christian2014-12-151-2/+4
|
* Swap literals to the end if optimizing.Christian2014-12-121-2/+4
|
* Clear separation between ASTVisitor and ASTConstVisitor and more const ↵Christian2014-12-081-1/+1
| | | | specifiers.
* Const AST visitor for the compiler.Christian2014-12-081-9/+9
|
* Magic variables.Christian2014-11-241-4/+1
|
* Special handling for constructor.Christian2014-11-191-4/+9
|
* Option to activate the optimizer for solidity.Christian2014-11-071-2/+2
|
* Some tests and bugfixes for the compiler.Christian2014-11-031-1/+0
|
* Actual contract creator and add solidity to AlethZero interface.Christian2014-10-311-0/+2
|
* Function selector and variable (un)packing.Christian2014-10-311-5/+11
|
* Renamed file.Christian2014-10-311-1/+1
|
* Contract compiler and also add ExpressionStatement to AST.Christian2014-10-301-117/+24
| | | | | | | | 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-2/+14
|
* Documentation for AST, Parser, Scanner and other classes.Christian2014-10-251-2/+2
|
* Expression compiler.Christian2014-10-251-0/+140