Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Stop using let_stmt twice | DJMcNab | 2019-01-27 | 1 | -43/+41 |
| | |||||
* | Make attrs be a child of the let statement | DJMcNab | 2019-01-26 | 2 | -7/+10 |
| | |||||
* | Support attributes on let statements | DJMcNab | 2019-01-26 | 1 | -20/+30 |
| | |||||
* | Struct literals should not be a `BlockLike::Block` | DJMcNab | 2019-01-26 | 1 | -1/+1 |
| | |||||
* | Merge #660 | bors[bot] | 2019-01-26 | 1 | -1/+23 |
|\ | | | | | | | | | | | | | | | 660: Support macro calls in type position r=matklad a=regiontog A [playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=fdc6dd4ddaece92a72fa2a292b75e27c) demonstrating the syntax in question. Co-authored-by: Erlend Tobiassen <[email protected]> | ||||
| * | Support macro calls in type position | Erlend Tobiassen | 2019-01-25 | 1 | -1/+23 |
| | | |||||
* | | rename POS_FIELD -> POS_FIELD_DEF | Aleksey Kladov | 2019-01-25 | 1 | -5/+5 |
|/ | | | | to match NAMED_FIELD_DEF | ||||
* | Reformat | DJMcNab | 2019-01-24 | 1 | -15/+16 |
| | |||||
* | Apply suggestions from code review | Daniel McNab | 2019-01-24 | 1 | -2/+1 |
| | | | Co-Authored-By: DJMcNab <[email protected]> | ||||
* | Dedupe PATH_FIRST in ATOM_EXPR_FIRST | DJMcNab | 2019-01-24 | 1 | -7/+2 |
| | |||||
* | Support universal function call syntax in function calls | DJMcNab | 2019-01-24 | 2 | -0/+3 |
| | |||||
* | Add test for placeholder parameters in trait fn defs | Erlend Tobiassen | 2019-01-22 | 1 | -0/+5 |
| | |||||
* | Allow placeholder parameters in trait fn defs | Erlend Tobiassen | 2019-01-22 | 1 | -1/+1 |
| | |||||
* | No need for is_type_start | Erlend Tobiassen | 2019-01-22 | 2 | -9/+1 |
| | |||||
* | Prefer TYPE_FIRST | Erlend Tobiassen | 2019-01-22 | 1 | -4/+4 |
| | |||||
* | Update tests after allowing where predicate to accept types | Erlend Tobiassen | 2019-01-22 | 1 | -0/+5 |
| | |||||
* | Optimistically bail out of where clause loop if not at start of a type or ↵ | Erlend Tobiassen | 2019-01-22 | 2 | -12/+24 |
| | | | | lifetime | ||||
* | Don't leave a marker hanging without completing it. | Erlend Tobiassen | 2019-01-22 | 1 | -2/+1 |
| | |||||
* | Allow types to the left of : in where predicates. | Erlend Tobiassen | 2019-01-22 | 1 | -24/+27 |
| | |||||
* | Change parsing of struct field patterns | Marcus Klaas de Vries | 2019-01-19 | 1 | -12/+11 |
| | |||||
* | Move parsing of field pattern lists to the parser (where it belongs) | Marcus Klaas de Vries | 2019-01-19 | 1 | -9/+17 |
| | |||||
* | make token set a const-fn | Aleksey Kladov | 2019-01-19 | 5 | -42/+33 |
| | |||||
* | Fix handling of attributes in positional field lists | DJMcNab | 2019-01-12 | 1 | -0/+10 |
| | |||||
* | Fix handling of where clauses in tuple structs | DJMcNab | 2019-01-10 | 1 | -0/+4 |
| | |||||
* | Rename traits::impl_item -> impl_block as well, as well as the tests | Florian Diebold | 2019-01-04 | 2 | -4/+4 |
| | |||||
* | Rename ImplItem to ImplBlock | Florian Diebold | 2019-01-04 | 1 | -1/+1 |
| | | | | | rustc uses the name ImplItem for items in impls, not the impl {} block itself, which could lead to confusion. | ||||
* | parse minus before number literal | csmoe | 2018-12-30 | 1 | -0/+5 |
| | |||||
* | Improve parsing of incomplete field accesses in preparation for field completion | Florian Diebold | 2018-12-25 | 1 | -9/+7 |
| | | | | | We need to be able to get the receiver even if there is no field name yet, and currently "a." wouldn't get parsed as a field name at all. This seems to help. | ||||
* | Fix where clauses using fully qualified path syntax | DJMcNab | 2018-12-21 | 1 | -1/+6 |
| | |||||
* | Fix parsing of contextual_keyword union | DJMcNab | 2018-12-20 | 1 | -1/+1 |
| | |||||
* | Use a better way of skipping SEMIs | DJMcNab | 2018-12-20 | 1 | -6/+6 |
| | |||||
* | Support a blank expression before a semicolon | DJMcNab | 2018-12-20 | 1 | -0/+6 |
| | |||||
* | Fix the tests and fix the precommit hook | DJMcNab | 2018-12-20 | 6 | -9/+9 |
| | |||||
* | Fix missing DOTDOTEQs | DJMcNab | 2018-12-20 | 1 | -3/+3 |
| | |||||
* | Don't require a command before EQ in a where clause | DJMcNab | 2018-12-20 | 1 | -1/+1 |
| | |||||
* | Simplify NO_BLOCK testing | DJMcNab | 2018-12-20 | 2 | -11/+3 |
| | |||||
* | Fix ambiguity with if break | DJMcNab | 2018-12-20 | 2 | -5/+21 |
| | | | | Brought up by #290 | ||||
* | Add tests and only traverse in the crates directory | DJMcNab | 2018-12-19 | 2 | -2/+7 |
| | |||||
* | Move is_block to lower in the call tree | DJMcNab | 2018-12-19 | 2 | -54/+43 |
| | |||||
* | Revert "Revert to f6f7c5" | DJMcNab | 2018-12-19 | 2 | -19/+36 |
| | | | | | | This approach is correct, but it needs an addition to Restrictions too This reverts commit ad00d0c8a5f64142e6636e8b048204c8f8982f4a. | ||||
* | Fix handling of structs in match arms | DJMcNab | 2018-12-19 | 1 | -1/+1 |
| | |||||
* | Revert to f6f7c5 | DJMcNab | 2018-12-19 | 2 | -36/+19 |
| | |||||
* | Fix expression parsing by bailing out upon a macro block being found | DJMcNab | 2018-12-19 | 1 | -14/+12 |
| | | | | | | TODO: Fix this when the block like macro is in expression position E.g. `test(test!{})` currently parses | ||||
* | Possibly fix #225 | DJMcNab | 2018-12-19 | 2 | -21/+40 |
| | |||||
* | Fix at_ts doc comment | DJMcNab | 2018-12-19 | 1 | -1/+1 |
| | |||||
* | Fix parsing of inclusive ranges (#214) | DJMcNab | 2018-12-19 | 2 | -4/+8 |
| | | | | I'm not certain that this is correct, so extra eyes would be good | ||||
* | Fixed cast expression parsing in ra_syntax. | Roland Ruckerbauer | 2018-12-17 | 2 | -9/+18 |
| | | | | | | | | | | | | | | | | | | | | | | The cast expression expected any type via types::type_() function, but the language spec does only allow TypeNoBounds (types without direct extra bounds via `+`). **Example:** ```rust fn test() { 6i8 as i32 + 5; } ``` This fails, because the types::type_() function which should parse the type after the as keyword is greedy, and takes all plus sign after path types as extra. My proposed fix is to replace the not implemented `type_no_plus()` just calls (`type_()`) function, which is used at several places. The replacement is `type_with_bounds_cond(p: &mut Parser, allow_bounds: bool)`, which passes the condition to relevant sub-parsers. This function is then called by `type_()` and the new public `type_no_bounds()`. | ||||
* | grand module rename | Aleksey Kladov | 2018-12-08 | 3 | -184/+0 |
| | |||||
* | Use json comparison code from cargo for heavy tests | Florian Diebold | 2018-12-06 | 1 | -1/+1 |
| | |||||
* | Improve/add the use_item documentation | DJMcNab | 2018-12-05 | 1 | -1/+54 |
| |