| Commit message (Expand) | Author | Age | Files | Lines |
* | parsing: `default` and `null` are reserved keywords | Yoichi Hirai | 2016-12-02 | 1 | -2/+2 |
* | Metadata stamp. | chriseth | 2016-12-01 | 1 | -0/+4 |
* | parser: recognize an end of comment of the form `**/` at the end of a multi-l... | Yoichi Hirai | 2016-12-01 | 1 | -1/+6 |
* | Fix licensing headers | VoR0220 | 2016-11-23 | 9 | -36/+36 |
* | Fix parser for function type disambiguity. | chriseth | 2016-11-16 | 1 | -1/+12 |
* | Function type state variables. | chriseth | 2016-11-16 | 2 | -31/+68 |
* | Function types. | chriseth | 2016-11-16 | 2 | -33/+64 |
* | parsing: ban empty enum definition. | Yoichi Hirai | 2016-11-12 | 1 | -0/+2 |
* | Add support for do/while loops | Rhett Aultman | 2016-11-10 | 2 | -1/+19 |
* | Merge pull request #1016 from ethereum/reserved | chriseth | 2016-09-06 | 2 | -1/+12 |
|\ |
|
| * | Raise proper error on reserved keywords | Alex Beregszaszi | 2016-09-06 | 1 | -1/+11 |
| * | Introduce isReservedKeyword() | Alex Beregszaszi | 2016-09-06 | 1 | -0/+1 |
* | | Reserve view and pure as keywords | Alex Beregszaszi | 2016-09-06 | 1 | -0/+2 |
|/ |
|
* | Merged in changes from chriseth/payable | Alex Beregszaszi | 2016-09-06 | 1 | -6/+6 |
* | Support payable keyword for functions | Alex Beregszaszi | 2016-09-06 | 2 | -1/+8 |
* | Require ";" after "_" | chriseth | 2016-09-05 | 1 | -1/+1 |
* | Version pragma. | chriseth | 2016-09-01 | 3 | -0/+35 |
* | Introduce hex literals (#832) | Alex Beregszaszi | 2016-08-16 | 3 | -0/+37 |
* | Reserved keywords update (#833) | Alex Beregszaszi | 2016-08-16 | 1 | -2/+6 |
* | Revert "Change After to a deprecated token" | Denton Liu | 2016-08-11 | 1 | -5/+1 |
* | Change After to a deprecated token | Denton Liu | 2016-08-11 | 1 | -1/+5 |
* | Remove after from Token.h | Denton Liu | 2016-08-11 | 1 | -2/+2 |
* | Rename addUnicodeChar to addUnicodeAsUTF8 | Alex Beregszaszi | 2016-08-05 | 2 | -3/+3 |
* | Support Unicode escape characters in string literals ('\uUUUU') | Alex Beregszaszi | 2016-08-05 | 2 | -0/+45 |
* | Fix isCompareOp() | Denton Liu | 2016-07-21 | 1 | -1/+1 |
* | Move `in` as a keyword to reserved word section | Denton Liu | 2016-07-21 | 1 | -1/+1 |
* | Fix Token::isBitOp to exclude shift operators | Alex Beregszaszi | 2016-06-08 | 1 | -1/+1 |
* | updated algorithm for bit finding...now to figure out literal value | VoR0220 | 2016-05-10 | 1 | -1/+1 |
* | got exponents up and working with their inverse, changed a few of the tests..... | RJ Catalano | 2016-05-10 | 1 | -2/+2 |
* | fixed problem with var...probably a conversion problem for fixed in size capa... | RJ Catalano | 2016-05-10 | 1 | -2/+2 |
* | fix for token bug, also quick fix for the wei and seconds | RJ Catalano | 2016-05-10 | 1 | -1/+1 |
* | initial work for fixed types...potentially needing a constant literal type fo... | RJ Catalano | 2016-05-10 | 1 | -0/+3 |
* | Remove log.h from solidity. | chriseth | 2016-04-12 | 3 | -3/+0 |
* | readding conditionals but with slight changes | VoR0220 | 2016-04-01 | 1 | -3/+2 |
* | solAsserts added and some changes rolled back. | VoR0220 | 2016-03-31 | 2 | -2/+3 |
* | helper function in scanner and corresponding edits to parserBase | VoR0220 | 2016-03-31 | 3 | -12/+13 |
* | Got it working exactly like you wanted ;) | VoR0220 | 2016-03-31 | 2 | -25/+76 |
* | change lexical cast to unsigned int | VoR0220 | 2016-03-31 | 1 | -1/+1 |
* | Fix for Token::name and token::toString | VoR0220 | 2016-03-31 | 1 | -4/+3 |
* | Code generation (missing external access and source locations). | chriseth | 2016-03-30 | 1 | -8/+9 |
* | Parsing for inline assembly. | chriseth | 2016-03-30 | 2 | -0/+21 |
* | Remove timestamp again and some fixes for ufixed parsing. | chriseth | 2016-03-12 | 2 | -15/+18 |
* | added keyword type and some tests, changes in lexical cast | RJ Catalano | 2016-03-12 | 2 | -11/+12 |
* | stylistic change, and got lexical cast to work with an iterator range | RJ Catalano | 2016-03-12 | 2 | -5/+6 |
* | - inline and assembly keywords added | LianaHus | 2016-03-12 | 3 | -8/+10 |
* | changed documentation and using lexical cast | RJ Catalano | 2016-03-12 | 2 | -11/+3 |
* | changed extractUnsigned to handle iterators rather than a string | RJ Catalano | 2016-03-12 | 2 | -5/+5 |
* | changed 1 to 0 in invalid argument catch block | RJ Catalano | 2016-03-12 | 2 | -2/+2 |
* | needed this one string of notation | RJ Catalano | 2016-03-12 | 1 | -0/+1 |
* | added from identifier or keyword handling of fixed types | RJ Catalano | 2016-03-12 | 2 | -6/+37 |
* | fixed keyword added in for token type | RJ Catalano | 2016-03-12 | 1 | -2/+4 |
* | Buildfix. | chriseth | 2016-02-23 | 1 | -3/+1 |
* | Move reusable parser components into base class. | chriseth | 2016-02-23 | 4 | -100/+183 |
* | further optimization, splitting function into pieces | RJ Catalano | 2016-02-19 | 2 | -14/+18 |
* | added const correctness to extract functions in Token | RJ Catalano | 2016-02-19 | 3 | -107/+44 |
* | added two functions in Token to handle long identifiers, redid fromIdentifier... | RJ Catalano | 2016-02-19 | 5 | -55/+138 |
* | tests added and changes made | RJ Catalano | 2016-02-19 | 4 | -67/+79 |
* | changes to redefine the token list, the scanner, and the parser and how they ... | RJ Catalano | 2016-02-19 | 5 | -125/+114 |
* | Fix uint178 problem. | chriseth | 2016-01-26 | 1 | -2/+2 |
* | [cond-expr] fixup according to code review | Lu Guanqun | 2016-01-23 | 1 | -1/+1 |
* | [cond-expr] parse _ ? _ : _ into conditional AST node | Lu Guanqun | 2016-01-23 | 1 | -6/+19 |
* | Remove unnecesary std::move | Paweł Bylica | 2016-01-15 | 1 | -1/+1 |
* | Use paths instead of simple identifiers wherever possible. | chriseth | 2015-12-22 | 2 | -15/+18 |
* | Merge pull request #311 from guanqun/correct-boolean-literal-position | chriseth | 2015-12-19 | 1 | -0/+1 |
|\ |
|
| * | correct true/false literal's source | Lu Guanqun | 2015-12-18 | 1 | -0/+1 |
* | | Simple aliasing during import. | chriseth | 2015-12-18 | 1 | -1/+1 |
* | | Parse complex import directives. | chriseth | 2015-12-18 | 1 | -19/+68 |
* | | changed error message | RJ Catalano | 2015-12-17 | 1 | -1/+1 |
* | | updated tests and much simpler algorithm for parsing errors | RJ Catalano | 2015-12-17 | 1 | -7/+6 |
* | | added one more test and realized that there was one last change before the pa... | RJ Catalano | 2015-12-17 | 1 | -1/+1 |
* | | Parsing is complete | RJ Catalano | 2015-12-17 | 1 | -3/+3 |
* | | changed a couple of small nuances, made an attempt at fixing the parsing in t... | RJ Catalano | 2015-12-17 | 1 | -3/+6 |
* | | now is compiling and passing soltest...but I think there may be a few more th... | RJ Catalano | 2015-12-16 | 1 | -4/+6 |
* | | fixed case statements | RJ Catalano | 2015-12-16 | 1 | -1/+2 |
* | | updated attempt...still a bit more work to do but here's what's current | RJ Catalano | 2015-12-16 | 1 | -0/+1 |
|\ \ |
|
| * | | Inline array declarations complete | RJ Catalano | 2015-12-15 | 1 | -0/+22 |
| |/ |
|
* / | updated attempt, a couple of more things to sort through and change | RJ Catalano | 2015-12-16 | 1 | -4/+6 |
|/ |
|
* | Added the `using x for y` directive. | chriseth | 2015-11-27 | 2 | -0/+21 |
* | Do not store elements of a contract by AST node type. | chriseth | 2015-11-26 | 1 | -18/+8 |
* | Fix MSVC errors and warnings. | chriseth | 2015-11-26 | 1 | -1/+1 |
* | Allow "new expressions" also for general type names. | chriseth | 2015-11-26 | 1 | -1/+1 |
* | Allow docstrings for statements. | chriseth | 2015-10-27 | 2 | -35/+45 |
* | Store docstrings in AST annotations. | chriseth | 2015-10-26 | 2 | -0/+211 |
* | more corrections | LianaHus | 2015-10-23 | 1 | -4/+14 |
* | modified error msg | LianaHus | 2015-10-23 | 1 | -1/+7 |
* | File reorganisation. | chriseth | 2015-10-21 | 6 | -0/+2900 |