aboutsummaryrefslogtreecommitdiffstats
path: root/Scanner.h
Commit message (Collapse)AuthorAgeFilesLines
* documentation comments are now always skipped but saved as special tokens at ↵Lefteris Karapetsas2014-11-191-13/+21
| | | | the Scanner
* fixing typo and alignmentLefteris Karapetsas2014-11-191-1/+1
|
* solidity scanner takes triple slash doc comments into accountLefteris Karapetsas2014-11-191-5/+14
| | | | | | | - Conditionally scanning for the documentation comments and gettings their contents. - Adding tests for this functionality of the scanner
* Support for negative literals.Christian2014-11-061-1/+1
|
* Converted all asserts to exceptions.Christian2014-11-051-1/+1
|
* Merge remote-tracking branch 'ethereum/develop' into sol_contractCompilerChristian2014-11-011-2/+2
|\ | | | | | | | | | | | | | | | | | | | | | | 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
| * Further const placement changes.Christian2014-10-301-2/+2
| |
* | Actual contract creator and add solidity to AlethZero interface.Christian2014-10-311-1/+2
|/
* Replace BOOST_ASSERT by assert.Christian2014-10-251-2/+0
|
* Documentation for AST, Parser, Scanner and other classes.Christian2014-10-251-15/+19
|
* Corrected spacing around colon.Christian2014-10-231-1/+1
|
* Cleanup of copyright headers.Christian2014-10-201-41/+51
|
* Access modifier cleanup.Christian2014-10-201-0/+1
|
* Coding style cleanup: const and vecptr.Christian2014-10-201-3/+3
|
* Coding style and cleanupChristian2014-10-171-80/+33
|
* Corrected coding style.Christian2014-10-161-55/+43
|
* Corrected indentation.Christian2014-10-091-177/+177
|
* Parse everything up to function bodies and report parser errors with location.Christian2014-10-091-0/+16
|
* Solidity parser, can not parse much yet.Christian2014-10-081-17/+1
|
* Solidity scanner and some unit tests.Christian2014-10-081-0/+252
The scanner is a modified version of the v8 javascript scanner.