Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | make Parse fields private | Aleksey Kladov | 2019-07-12 | 1 | -2/+2 |
| | | | | this is in preparation for the new rowan API | ||||
* | allow rustfmt to reorder imports | Aleksey Kladov | 2019-07-04 | 1 | -3/+3 |
| | | | | | | This wasn't a right decision in the first place, the feature flag was broken in the last rustfmt release, and syntax highlighting of imports is more important anyway | ||||
* | Remove parse error on array initializer attributes | Ryan Cumming | 2019-06-30 | 2 | -65/+0 |
| | | | | | This is actually allowed by the `rustc` parser but most attributes will fail later due to attributes on expressions being experimental. | ||||
* | Support attributes on array members | Ryan Cumming | 2019-06-30 | 6 | -0/+177 |
| | | | | | | | | | | | | Array members are allow to have attributes such as `#[cfg]`. This is a bit tricky as we don't know if the first expression is an initializer or a member until we encounter a `;`. This reuses a trick from `stmt` where we remember if we saw an attribute and then raise an error if the first expression ends up being an initializer. This isn't perfect as the error isn't correctly located on the attribute or initializer; it ends up immediately after the `;`. | ||||
* | fixed #1384 | zjy | 2019-06-28 | 2 | -0/+70 |
| | |||||
* | Merge #1415 | bors[bot] | 2019-06-24 | 4 | -0/+121 |
|\ | | | | | | | | | | | | | | | | | 1415: fix: specialization r=matklad a=csmoe Closes #1402 r? @matklad Co-authored-by: csmoe <[email protected]> | ||||
| * | fix: specialization(with blindly parsing) | csmoe | 2019-06-19 | 4 | -0/+121 |
| | | | | | | | | Change-Id: Ic5d2767e8781568d76d4d0013cd6081e95ae8a95 | ||||
* | | fix: box_pattern | csmoe | 2019-06-19 | 4 | -6/+67 |
| | | | | | | | | Change-Id: I45a856d74fb616d3bce33050f9e69d327186bd59 | ||||
* | | fix: box_syntax(#1412) | csmoe | 2019-06-18 | 1 | -0/+3 |
|/ | | | | Change-Id: I6e20e0163fa545de37226c1561b3b7103615626c | ||||
* | fix: support existential type | csmoe | 2019-06-12 | 4 | -3/+35 |
| | |||||
* | fix: never type with binding | csmoe | 2019-06-07 | 2 | -6/+38 |
| | | | | Change-Id: I14e1bc628b9d2dfdb1f40de3d3707f4e872767f2 | ||||
* | [#1083] Try block syntax: fix tests | Andrey Tkachenko | 2019-06-06 | 4 | -37/+34 |
| | |||||
* | [#1083] Try block syntax | Andrey Tkachenko | 2019-06-06 | 2 | -0/+37 |
| | |||||
* | show error offsets in tests | Aleksey Kladov | 2019-05-29 | 44 | -288/+288 |
| | |||||
* | remove old parsing methods | Aleksey Kladov | 2019-05-28 | 1 | -5/+3 |
| | |||||
* | update test data | Aleksey Kladov | 2019-05-28 | 44 | -288/+288 |
| | |||||
* | update tests | Aleksey Kladov | 2019-05-28 | 1 | -15/+10 |
| | |||||
* | 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 |
| | |||||
* | fix typo | Aleksey Kladov | 2019-04-11 | 1 | -1/+1 |
| | |||||
* | 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 | ||||
* | replace todo with fixme | Aleksey Kladov | 2019-03-23 | 1 | -1/+1 |
| | |||||
* | 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 |
| | |||||
* | Add fuzz test for reparsing | pcpthm | 2019-03-21 | 1 | -0/+9 |
| | |||||
* | Refactor parser fuzz testing | pcpthm | 2019-03-21 | 1 | -2/+2 |
| | |||||
* | 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 |
| | | |