Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | show error offsets in tests | Aleksey Kladov | 2019-05-29 | 44 | -288/+288 |
| | |||||
* | update test data | Aleksey Kladov | 2019-05-28 | 44 | -288/+288 |
| | |||||
* | share literal validation logic with compiler | Aleksey Kladov | 2019-05-07 | 1 | -3/+0 |
| | |||||
* | Add macro pat parsing | Edwin Cheng | 2019-04-30 | 2 | -0/+39 |
| | |||||
* | Refactor parser handle mult-char punct internally | Edwin Cheng | 2019-04-28 | 4 | -46/+94 |
| | |||||
* | Add `...` parsing for fn pointer type | Edwin Cheng | 2019-04-23 | 2 | -1/+44 |
| | |||||
* | Parse and infer tuple indices | robojumper | 2019-04-06 | 4 | -6/+78 |
| | |||||
* | Parse unsafe async / const unsafe fns properly | robojumper | 2019-04-03 | 4 | -0/+78 |
| | |||||
* | always show token text | Aleksey Kladov | 2019-04-02 | 218 | -8818/+8818 |
| | |||||
* | Merge #1082 | bors[bot] | 2019-04-01 | 2 | -0/+95 |
|\ | | | | | | | | | | | | | | | 1082: Async block in argument position r=matklad a=andreytkachenko Fixes case when async block appears in argument position Co-authored-by: Andrey Tkachenko <[email protected]> | ||||
| * | Async block in argument position | Andrey Tkachenko | 2019-04-01 | 2 | -0/+95 |
| | | |||||
* | | Async closure syntax | robojumper | 2019-03-31 | 2 | -6/+53 |
|/ | |||||
* | Add WherePred to allow predicate access in WhereClause | Ville Penttinen | 2019-03-31 | 1 | -5/+8 |
| | | | | | This also unifies parsing of WHERE_PRED bounds, now Lifetime bounds will also be parsed using TYPE_BOUND_LIST | ||||
* | Merge #1072 | bors[bot] | 2019-03-31 | 2 | -0/+40 |
|\ | | | | | | | | | | | | | | | 1072: recognize async move blocks r=matklad a=memoryruins closes #1053 Co-authored-by: memoryruins <[email protected]> | ||||
| * | add test for async blocks | memoryruins | 2019-03-28 | 2 | -0/+40 |
| | | |||||
* | | Update tests | Ville Penttinen | 2019-03-31 | 3 | -67/+115 |
| | | |||||
* | | Update tests | Ville Penttinen | 2019-03-30 | 25 | -418/+634 |
| | | |||||
* | | Fix parsing <= in type_args | Ville Penttinen | 2019-03-30 | 2 | -6/+27 |
|/ | |||||
* | Add tests to ra_syntax for extern_crate_self | memoryruins | 2019-03-28 | 2 | -1/+17 |
| | |||||
* | Support references in higher-ranked trait bounds | Ville Penttinen | 2019-03-24 | 2 | -1/+127 |
| | | | | Fixes #1020 | ||||
* | Fix reparsing failure when removing newline | pcpthm | 2019-03-21 | 1 | -0/+7 |
| | |||||
* | Fix reparsing bug on "{}{}" | pcpthm | 2019-03-21 | 1 | -0/+4 |
| | |||||
* | Fix lexer not producing right token on "_" | pcpthm | 2019-03-21 | 1 | -0/+0 |
| | |||||
* | Fix reparsing bug when lex result is different | pcpthm | 2019-03-21 | 2 | -0/+8 |
| | |||||
* | Fix an arithmetic overflow in reparser | pcpthm | 2019-03-21 | 1 | -0/+6 |
| | |||||
* | Error about attributes on | pcpthm | 2019-03-19 | 2 | -0/+59 |
| | | | | unallowed types of expression statement | ||||
* | Allow attributes on top level expression | pcpthm | 2019-03-19 | 4 | -0/+152 |
| | | | | | | A top level expression is either - a expression statement or - the last expression in a block | ||||
* | Merge #991 | bors[bot] | 2019-03-18 | 8 | -10/+88 |
|\ | | | | | | | | | | | | | | | | | | | | | | | 991: Use Marker argument for item parsers r=matklad a=pcpthm Before doing this for expressions, I found that the pattern (Marker argument) should be applied to the item parsers because visiblity and modifiers are parsed in a separate function. Fixed some parser bugs: - Fix pub_expr: `pub 42;` was allowed. - Fix incorrect parsing of crate::path: incorrectly parsed as `crate` as a visibility. Co-authored-by: pcpthm <[email protected]> | ||||
| * | Use Marker argument for item parsers | pcpthm | 2019-03-18 | 8 | -10/+88 |
| | | | | | | | | | | - Fix pub_expr - Fix incorrect parsing of crate::path | ||||
* | | Merge #983 | bors[bot] | 2019-03-17 | 2 | -0/+217 |
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 983: support remainder assignment operator r=matklad a=JeanMertz `%=` was returning errors for me, turns out it wasn't added as a valid assignment operation. I'm not sure what the best location would be to add a test for this. Please let me know and I'll add one. Co-authored-by: Jean Mertz <[email protected]> | ||||
| * | | support remainder assignment operator | Jean Mertz | 2019-03-17 | 2 | -0/+217 |
| | | | |||||
* | | | Fix parse tree of attribute on match arm | pcpthm | 2019-03-17 | 3 | -118/+118 |
| |/ |/| | |||||
* | | Allow attribute on struct literal field | pcpthm | 2019-03-17 | 2 | -0/+48 |
|/ | |||||
* | Add test for minus in inner pattern | Michael Chesser | 2019-03-14 | 2 | -0/+347 |
| | |||||
* | Add test for async block | Caio | 2019-03-10 | 2 | -0/+32 |
| | |||||
* | Add async keyword | Caio | 2019-03-09 | 4 | -1/+20 |
| | |||||
* | Add support for parsing multiple if and while-let patterns | Ville Penttinen | 2019-03-04 | 2 | -1/+164 |
| | |||||
* | allow `mut ident` patterns in trait methods | Aleksey Kladov | 2019-03-04 | 2 | -11/+26 |
| | | | | closes #928 | ||||
* | allow aliases in underscores | Aleksey Kladov | 2019-03-04 | 2 | -1/+17 |
| | | | | | | | | this helps with use foo::Trait as _; syntax | ||||
* | Merge #926 | bors[bot] | 2019-03-04 | 2 | -0/+50 |
|\ | | | | | | | | | | | | | | | 926: allow vararg functions r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]> | ||||
| * | allow vararg functions | Aleksey Kladov | 2019-03-04 | 2 | -0/+50 |
| | | |||||
* | | improve error recovery | Aleksey Kladov | 2019-03-04 | 3 | -42/+70 |
|/ | | | | parse the contents of error block as an expression | ||||
* | rename type to type_alias in the AST as well | Aleksey Kladov | 2019-02-25 | 28 | -37/+37 |
| | |||||
* | Enable parsing attributes for generic lifetimes and type parameters | Ville Penttinen | 2019-02-17 | 2 | -0/+63 |
| | |||||
* | Parse only outer_attributes for match arms for now | Ville Penttinen | 2019-02-17 | 1 | -31/+59 |
| | |||||
* | Enable parsing of attributes inside a match block | Ville Penttinen | 2019-02-17 | 8 | -0/+493 |
| | | | | | | | We allow invalid inner attributes to be parsed, e.g. inner attributes that are not directly after the opening brace of the match block. Instead we run validation on `MatchArmList` to allow better reporting of errors. | ||||
* | rename yellow -> syntax_node | Aleksey Kladov | 2019-02-12 | 1 | -2/+2 |
| | | | | why yellow in the first place? Its red + green. | ||||
* | make macro a NameOwner | Aleksey Kladov | 2019-02-11 | 3 | -3/+6 |
| | |||||
* | Fix handling of literal patterns | Florian Diebold | 2019-02-09 | 3 | -25/+37 |
| | | | | | Wrap them in a LiteralPat node so they can be distinguished from literal expressions. | ||||
* | Add AST for extern crate | Florian Diebold | 2019-02-04 | 2 | -3/+3 |
| | | | | Also change it to parse the crate name as a NAME_REF, not a NAME. |