aboutsummaryrefslogtreecommitdiffstats
path: root/Parser.h
Commit message (Collapse)AuthorAgeFilesLines
* Minor issues, grammar update, new ForStatement testLefteris Karapetsas2014-12-171-3/+2
|
* ForStatement typecheck and initExpression is a StatementLefteris Karapetsas2014-12-171-1/+1
|
* Adding a ForStatement solidity AST Node.Lefteris Karapetsas2014-12-171-0/+6
| | | | | | | - Adding ForStatement node - Implemented Parsing for ForStatement - A simple parsing test for the ForStatement - Work in progress
* Improved external interface for multi-source and multi-contract compilation.Christian2014-12-041-0/+1
|
* Import directive.Christian2014-12-031-1/+2
|
* Contract compiler and also add ExpressionStatement to AST.Christian2014-10-301-0/+1
| | | | | | | | 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.
* Documentation for AST, Parser, Scanner and other classes.Christian2014-10-251-6/+7
|
* Use boost errinfo.Christian2014-10-241-1/+4
|
* Pointer type cleanup: Use ASTPointer only for AST nodes and shared_ptr for typeChristian2014-10-201-21/+21
| | | | pointer.
* Coding style cleanup: const and vecptr.Christian2014-10-201-2/+2
|
* Corrected coding style.Christian2014-10-161-14/+17
|
* Type system, not yet complete.Christian2014-10-161-3/+3
|
* Name resolution.Christian2014-10-131-2/+2
|
* AST printer and command line tool, some fixes.Christian2014-10-101-1/+2
|
* Initial implementation of Solidity parser finished, not yet tested much.Christian2014-10-101-0/+10
|
* Corrected indentation.Christian2014-10-091-36/+37
|
* Parse everything up to function bodies and report parser errors with location.Christian2014-10-091-2/+6
|
* Solidity parser, can not parse much yet.Christian2014-10-081-0/+64