aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/src
Commit message (Collapse)AuthorAgeFilesLines
...
* make ast object safeAleksey Kladov2019-08-231-2/+10
|
* Improve/fix type bound loweringFlorian Diebold2019-08-221-26/+29
|
* Add `impl Trait` and `dyn Trait` typesFlorian Diebold2019-08-222-1/+27
| | | | | | | - refactor bounds handling in the AST a bit - add HIR for bounds - add `Ty::Dyn` and `Ty::Opaque` variants and lower `dyn Trait` / `impl Trait` syntax to them
* Don't add `?` bounds as real boundsAleksey Kladov2019-08-221-0/+12
| | | | closes #1709
* :arrow_up: rustc_lexerAleksey Kladov2019-08-202-116/+74
|
* remove ast::*Kind enumsAleksey Kladov2019-08-192-353/+347
| | | | With the new owned trees, we don't need an indirection here
* use new quote-generated astAleksey Kladov2019-08-182-1289/+1408
|
* use quote! macro to generate grammarAleksey Kladov2019-08-181-27/+27
| | | | | We already use syn&quote elsewhere (transitively), so it make sense to cut down on the number of technologies and get rid of tera
* deserialize grammarAleksey Kladov2019-08-181-53/+53
|
* Introduce separate hir::BinaryOpAleksey Kladov2019-08-171-6/+0
| | | | | Unlike ast::BinOp, it has significantly more structure to it, so it's easier to, say, handle all assignment-like operations in the same way.
* implement accessors for IndexExprAleksey Kladov2019-08-171-0/+9
|
* simplifyAleksey Kladov2019-08-171-35/+36
|
* Lower fully qualified associated type pathsFlorian Diebold2019-08-121-0/+10
| | | | I.e. `<T as Trait>::Foo`.
* Move numeric names inside of `NameRef`Aleksey Kladov2019-08-092-18/+20
|
* Change macro to functionEvgenii P2019-08-091-15/+13
|
* rustfmtEvgenii P2019-08-091-10/+10
|
* Reduce code duplication in lexer by introducing small macroEvgenii P2019-08-091-20/+17
|
* Add function parameters attributesEvgenii P2019-08-072-0/+4
|
* Unconditionally trim the end of commentskjeremy2019-07-312-13/+5
|
* Removes `*/` in block doc commentskjeremy2019-07-312-2/+62
|
* Add explicit newline preserving testskjeremy2019-07-311-0/+17
|
* Merge #1604bors[bot]2019-07-291-3/+19
|\ | | | | | | | | | | | | | | 1604: Fix failing type interference for floating point literal r=matklad a=theotherphil Fixes https://github.com/rust-analyzer/rust-analyzer/issues/1592 Co-authored-by: Phil Ellison <[email protected]>
| * cargo formatPhil Ellison2019-07-281-3/+1
| |
| * Add special case for f32 and f43 suffices on Literal.kindPhil Ellison2019-07-282-17/+21
| |
| * Add issue link and trailing newlinePhil Ellison2019-07-281-1/+2
| |
| * More direct failing testPhil Ellison2019-07-281-0/+13
| |
* | move syntax tests to unit testsAleksey Kladov2019-07-242-0/+103
| |
* | switch to upstream unescapeAleksey Kladov2019-07-242-525/+87
|/
* kill old lexerAleksey Kladov2019-07-226-571/+17
|
* add rustc_lexerAleksey Kladov2019-07-221-4/+104
|
* simiplifyAleksey Kladov2019-07-212-11/+10
|
* streamline APIAleksey Kladov2019-07-213-17/+7
|
* minor, move typeAleksey Kladov2019-07-213-12/+13
|
* switch to upstream rowan's APIAleksey Kladov2019-07-207-679/+146
|
* Merge #1566bors[bot]2019-07-201-13/+3
|\ | | | | | | | | | | | | | | 1566: align SyntaxText API with upstream r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * align SyntaxText API with upstreamAleksey Kladov2019-07-201-13/+3
| |
* | Merge #1562bors[bot]2019-07-202-1/+34
|\ \ | |/ |/| | | | | | | | | | | | | 1562: Continue support for .await r=matklad a=unrealhoang - add await expr to ast and HIR Expr - infer type for `.await` Co-authored-by: Unreal Hoang <[email protected]>
| * add await expr to astUnreal Hoang2019-07-202-1/+34
| |
* | Merge #1560bors[bot]2019-07-2010-68/+63
|\ \ | |/ |/| | | | | | | | | | | 1560: move debug_dump to fmt::Debug r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * rename range -> text_rangeAleksey Kladov2019-07-2010-29/+32
| |
| * move debug_dump to fmt::DebugAleksey Kladov2019-07-205-40/+32
| |
* | add await to syntax, parser for await_exprUnreal Hoang2019-07-201-0/+2
|/
* remove lifetime from syntax node textAleksey Kladov2019-07-193-14/+15
|
* sane indexing in textAleksey Kladov2019-07-191-7/+10
|
* flip syntax text to use internal iterationAleksey Kladov2019-07-192-34/+65
|
* drop memory size of subtreeAleksey Kladov2019-07-191-4/+0
| | | | | it wasn't too accurate and the new measurement method of dropping the database completely is better anyway
* convenience apiAleksey Kladov2019-07-194-41/+55
|
* cleanup castsAleksey Kladov2019-07-194-841/+964
|
* several highlighting cleanupsAleksey Kladov2019-07-191-0/+11
| | | | | | * make stuff more type-safe by using `BindPat` instead of just `Pat` * don't add `mut` into binding hash * reset shadow counter when we enter a function
* migrate ra_assists to the new ASTAleksey Kladov2019-07-191-1/+1
|