Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | rename POS_FIELD -> POS_FIELD_DEF | Aleksey Kladov | 2019-01-25 | 13 | -62/+62 |
| | | | | to match NAMED_FIELD_DEF | ||||
* | Add docs to struct fields | Jeremy A. Kolb | 2019-01-25 | 3 | -2/+3 |
| | |||||
* | Merge #630 | bors[bot] | 2019-01-25 | 2 | -24/+45 |
|\ | | | | | | | | | | | | | | | | | | | | | | | 630: Fill in DocumentSymbol::detail r=matklad a=hban Closes: #516 I just pulled type text from the syntax node and "formatted" is bit. VS Code can't really handle multi-line symbol detail (it's will crop it when rendering), so that formatting will just collapse all white-space to singe space. It isn't pretty, but maybe there's a better way. Issue also mentions "need to be done for `NavigationTarget` to `SymbolInformation`", but `SymbolInformation` doesn't have detail field on it? Co-authored-by: Hrvoje Ban <[email protected]> | ||||
| * | Fill in DocumentSymbol::detail | Hrvoje Ban | 2019-01-24 | 2 | -24/+45 |
| | | |||||
* | | Merge #633 | bors[bot] | 2019-01-24 | 4 | -8/+523 |
|\ \ | | | | | | | | | | | | | | | | | | | | | | 633: use ToOwned trait instead of inherent method r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]> | ||||
| * | | use ToOwned trait instead of inherent method | Aleksey Kladov | 2019-01-24 | 4 | -8/+523 |
| | | | |||||
* | | | Merge #623 | bors[bot] | 2019-01-24 | 3 | -2/+10 |
|\ \ \ | |/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | 623: WIP: module id is not def id r=matklad a=matklad This achieves two things: * makes module_tree & item_map per crate, not per source_root * begins the refactoring to remove universal `DefId` in favor of having separate ids for each kind of `Def`. Currently, only modules get a differnt ID though. Co-authored-by: Aleksey Kladov <[email protected]> | ||||
| * | | Migrate trait & type to new ids | Aleksey Kladov | 2019-01-24 | 2 | -2/+3 |
| | | | |||||
| * | | migrate enums to new id | Aleksey Kladov | 2019-01-24 | 1 | -0/+7 |
| | | | |||||
* | | | 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 | 6 | -6/+226 |
| |/ |/| | |||||
* | | minor rename | Aleksey Kladov | 2019-01-24 | 1 | -4/+4 |
|/ | |||||
* | Make EnumVariant a DocCommentsOwner | Jeremy A. Kolb | 2019-01-23 | 3 | -2/+4 |
| | |||||
* | More correct raw ident handling | Josh Robson Chase | 2019-01-23 | 3 | -5/+58 |
| | |||||
* | Use IDENT for both raw and normal idents | Josh Robson Chase | 2019-01-23 | 22 | -78/+39 |
| | |||||
* | Add raw idents to lexer and parser | Josh Robson Chase | 2019-01-23 | 26 | -40/+124 |
| | |||||
* | introduced better typed AstPtr | Aleksey Kladov | 2019-01-23 | 2 | -1/+35 |
| | |||||
* | move SyntaxPtr to ra_syntax | Aleksey Kladov | 2019-01-23 | 2 | -0/+55 |
| | |||||
* | fix completion bugs | gfreezy | 2019-01-23 | 1 | -0/+7 |
| | |||||
* | :arrow_up: rowan | Aleksey Kladov | 2019-01-22 | 2 | -1/+5 |
| | |||||
* | Add test for placeholder parameters in trait fn defs | Erlend Tobiassen | 2019-01-22 | 3 | -0/+40 |
| | |||||
* | 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 | 5 | -20/+68 |
| | |||||
* | 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 |
| | |||||
* | Add AST/HIR for type args in path segments | Florian Diebold | 2019-01-19 | 2 | -1/+137 |
| | |||||
* | Change parsing of struct field patterns | Marcus Klaas de Vries | 2019-01-19 | 4 | -26/+32 |
| | |||||
* | Finish move of StructField for pattern type inference | Marcus Klaas de Vries | 2019-01-19 | 1 | -20/+26 |
| | |||||
* | Move parsing of field pattern lists to the parser (where it belongs) | Marcus Klaas de Vries | 2019-01-19 | 5 | -60/+59 |
| | |||||
* | Add initial (flawed) implementation of binding annotations | Marcus Klaas de Vries | 2019-01-19 | 3 | -2/+19 |
| | |||||
* | Implement unlabeled struct field pattern inference | Marcus Klaas de Vries | 2019-01-19 | 1 | -31/+11 |
| | |||||
* | Create struct patterns up to the hir level | Marcus Klaas de Vries | 2019-01-19 | 3 | -7/+80 |
| | |||||
* | Add additional pattern variants | Marcus Klaas de Vries | 2019-01-19 | 2 | -4/+12 |
| | |||||
* | make token set a const-fn | Aleksey Kladov | 2019-01-19 | 8 | -57/+52 |
| | |||||
* | Update ARRAY_EXPR grammar | Hirokazu Hata | 2019-01-16 | 2 | -2/+8 |
| | |||||
* | Merge #536 | bors[bot] | 2019-01-16 | 1 | -0/+9 |
|\ | | | | | | | | | | | | | | | | | | | 536: Introduce variable semicolon block expr r=matklad a=yerke Fix for https://github.com/rust-analyzer/rust-analyzer/issues/504 Feels a bit hacky... Co-authored-by: Yerkebulan Tulibergenov <[email protected]> | ||||
| * | add has_semi to ExprStmt | Yerkebulan Tulibergenov | 2019-01-16 | 1 | -0/+9 |
| | | |||||
* | | update salsa | Aleksey Kladov | 2019-01-15 | 1 | -1/+1 |
| | | |||||
* | | Fix type inference for raw (byte) strings | Marcus Klaas de Vries | 2019-01-14 | 3 | -14/+61 |
| | | |||||
* | | Fixup tests | Marcus Klaas de Vries | 2019-01-14 | 5 | -45/+148 |
| | | |||||
* | | Start moving literal interpretation to the AST (WIP) | Marcus Klaas de Vries | 2019-01-14 | 3 | -6/+128 |
| | | |||||
* | | Try implementing integer type inference (WIP) | Marcus Klaas de Vries | 2019-01-14 | 1 | -1/+1 |
| | | |||||
* | | Implement type inference for literals (WIP) | Marcus Klaas de Vries | 2019-01-14 | 3 | -1/+27 |
|/ | |||||
* | Update TUPLE_EXPR grammar | Hirokazu Hata | 2019-01-13 | 2 | -2/+8 |
| | |||||
* | support ref-patterns | Aleksey Kladov | 2019-01-13 | 3 | -2/+12 |
| |