aboutsummaryrefslogtreecommitdiffstats
path: root/Token.h
Commit message (Collapse)AuthorAgeFilesLines
* More convenient function type construction.Christian2015-01-121-0/+2
|
* Fixed #683Gav Wood2014-12-211-1/+1
|
* Bit operators should bind more strongly than comparison operators.Christian2014-12-191-10/+10
|
* Assertions that throw InternalCompilerErrors.Christian2014-12-171-8/+5
|
* Merge branch 'develop' of https://github.com/ethereum/cpp-ethereum into ↵sveneh2014-12-131-0/+35
|\ | | | | | | | | | | | | | | | | | | build_enhancement Conflicts: windows/LibEthereum.vcxproj windows/LibEthereum.vcxproj.filters Solved by removing files (not necessary anymore)
| * Merge remote-tracking branch 'ethereum/develop' into sol_swapConstantsChristian2014-12-131-0/+33
| |\ | | | | | | | | | | | | Conflicts: test/solidityOptimizerTest.cpp
| | * Support empty strings.Christian2014-12-111-0/+1
| | |
| | * String types.Christian2014-12-101-0/+32
| | |
| * | Swap literals to the end if optimizing.Christian2014-12-121-0/+2
| |/
* / common improvementsdebris2014-12-081-0/+3
|/
* Cleanup of scanner.Christian2014-12-011-14/+0
| | | | | Removed redundancy of keyword definitions and removed some unused token predicates.
* Contracts as types and framework for special global variables.Christian2014-11-241-1/+0
|
* fixing typo and alignmentLefteris Karapetsas2014-11-191-1/+1
|
* solidity scanner takes triple slash doc comments into accountLefteris Karapetsas2014-11-191-0/+1
| | | | | | | - Conditionally scanning for the documentation comments and gettings their contents. - Adding tests for this functionality of the scanner
* Keywords for all integer types.Christian2014-11-061-0/+84
|
* Converted all asserts to exceptions.Christian2014-11-051-53/+11
|
* Replace BOOST_ASSERT by assert.Christian2014-10-251-10/+9
|
* Expression compiler.Christian2014-10-251-0/+1
|
* Coding style cleanup: const and vecptr.Christian2014-10-201-6/+6
|
* Keyword cleanupChristian2014-10-171-50/+12
|
* Corrected coding style.Christian2014-10-161-101/+93
|
* Type system, not yet complete.Christian2014-10-161-3/+10
|
* Corrected indentation.Christian2014-10-091-297/+297
|
* Parse everything up to function bodies and report parser errors with location.Christian2014-10-091-0/+1
|
* Solidity parser, can not parse much yet.Christian2014-10-081-1/+34
|
* Solidity scanner and some unit tests.Christian2014-10-081-0/+339
The scanner is a modified version of the v8 javascript scanner.