aboutsummaryrefslogtreecommitdiffstats
path: root/Token.h
Commit message (Collapse)AuthorAgeFilesLines
* Added anonymous flag to event.Liana Husikyan2015-03-171-0/+1
| | | | added test
* Style fixes and some additional hash to bytes32 renamingLefteris Karapetsas2015-03-121-3/+3
|
* byte is now an alias for byte1Lefteris Karapetsas2015-03-121-3/+4
|
* Most EndToEndTests are now compliant with the Bytes renamingLefteris Karapetsas2015-03-121-1/+2
|
* Bytes Tokens properly named and NameAndTypeResolution tests workLefteris Karapetsas2015-03-121-32/+32
|
* More changes towards getting rid of HashXXLefteris Karapetsas2015-03-121-3/+1
|
* start of cleanupLefteris Karapetsas2015-03-121-66/+33
|
* Add date/time language to solidity.Gav Wood2015-03-061-8/+16
|
* Consolidating macro resolution to one header file as per project owner ↵jhuntley2015-03-051-11/+1
| | | | | | request. Added inline comments covering reasons for undef of macros. Resolves issues with problem #832: Adding UndefWindowsMacros.h to handle V8 CPP conflicts in Windows #832
* Update to resolve "#error : The macro "DELETE" from windows.h conflicts ↵jhuntley2015-03-051-1/+1
| | | | with this file." on windows vs build.
* Adding comments for #undef per project owner request.jhuntley2015-03-051-6/+11
|
* Updates for mingw support. #undef conflicting defines on windows.jhuntley2015-03-051-0/+6
|
* Replaced "inheritable" by "internal".Christian2015-02-231-2/+2
|
* cppcheck fixes.Gav Wood2015-02-211-1/+1
|
* Rename "protected" to "inheritable".Christian2015-02-181-2/+2
|
* "external" visibility specifier.Christian2015-02-171-1/+3
|
* Indentation fixesLefteris Karapetsas2015-02-141-33/+33
|
* Parsing an enum AST nodeLefteris Karapetsas2015-02-141-1/+1
|
* Adding enum Token and whitespace style at Token.hLefteris Karapetsas2015-02-141-21/+21
|
* Introduced byte array type.Christian2015-02-121-3/+3
|
* add exponent operatorLu Guanqun2015-02-101-2/+3
| | | | https://www.pivotaltracker.com/n/projects/1189488/stories/83746404
* Addressing issues in Enum style fixLefteris Karapetsas2015-02-101-40/+40
|
* Changing Solidity Code to use CamelCase enum valuesLefteris Karapetsas2015-02-091-238/+233
|
* Minor Style fixesLefteris Karapetsas2015-02-061-6/+6
|
* Tests for ether subdenominations. Work in progressLefteris Karapetsas2015-02-051-0/+1
|
* Adding ether subdenominations after constan literalsLefteris Karapetsas2015-02-051-0/+5
|
* Visibility specifiers.Christian2015-02-031-0/+2
|
* Parsing of events.Christian2015-01-301-0/+2
|
* Function modifier parsing.Christian2015-01-261-0/+1
|
* Inheritance parser.Christian2015-01-201-1/+1
|
* Potential workaround for windows build.Gav Wood2015-01-171-1/+2
|
* also add compiler error if include order could cause a problem in windowsLefteris Karapetsas2015-01-151-0/+4
|
* 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.