aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir/src/semantics.rs
Commit message (Collapse)AuthorAgeFilesLines
* Add support for extern cratePaul Daniel Faria2020-08-081-3/+22
| | | | | This adds syntax highlighting, hover and goto def functionality for extern crate
* Rename BindPat -> IdentPatAleksey Kladov2020-07-311-3/+3
|
* Allign RecordPat with RecordExprAleksey Kladov2020-07-311-2/+2
|
* Finalize impl GrammarAleksey Kladov2020-07-301-1/+1
|
* Finalize Trait grammarAleksey Kladov2020-07-301-1/+1
|
* Finalize const&static grammarAleksey Kladov2020-07-301-2/+2
|
* Rename EnumVariant -> VariantAleksey Kladov2020-07-301-1/+1
|
* Rename EnumDef -> EnumAleksey Kladov2020-07-301-1/+1
|
* Rename StructDef -> StructAleksey Kladov2020-07-301-1/+1
|
* Finalize union grammarAleksey Kladov2020-07-301-1/+1
|
* Rename FieldDef -> FieldAleksey Kladov2020-07-301-2/+2
|
* Rename RecordLit -> RecordExprAleksey Kladov2020-07-301-6/+9
|
* Rename TypeAliasDef -> TypeAliasAleksey Kladov2020-07-301-1/+1
|
* Rename FnDef -> FnAleksey Kladov2020-07-301-1/+1
|
* Cache macro expansion in semanticsAleksey Kladov2020-07-241-2/+14
| | | | | #5497 accidentally made syntax highlighting quadratic, due to repeated tokentreeizing of macros.
* Add missing cancellation pointAleksey Kladov2020-07-241-0/+1
|
* Add profiling callAleksey Kladov2020-07-241-0/+1
|
* Semantical call infoAleksey Kladov2020-07-161-5/+20
|
* Fix goto definition for type alias type parametersAleksey Kladov2020-07-111-0/+1
| | | | closes https://github.com/rust-analyzer/rust-analyzer/issues/5042
* Reduce visibilityAleksey Kladov2020-07-111-31/+31
|
* Speed up completionAleksey Kladov2020-07-111-0/+1
|
* Dont expose IDAleksey Kladov2020-07-101-4/+3
|
* RenameAleksey Kladov2020-07-101-1/+1
|
* Goto type definition works for selfAleksey Kladov2020-07-101-0/+9
|
* Make less code genericLaurențiu Nicola2020-07-011-69/+47
|
* Try to reduce Semantics monomorphisationsLaurențiu Nicola2020-07-011-23/+186
|
* Make SemanticsScope non-genericLaurențiu Nicola2020-07-011-8/+8
|
* Add quickfix to add a struct fieldTimo Freiberg2020-06-121-2/+13
|
* Don't guess macro expansion crateAleksey Kladov2020-06-111-1/+2
|
* Add doc comment for resolve_hir_path_qualifierHasan Ali2020-05-161-0/+13
|
* Fix completion and hover for module and function of same nameHasan Ali2020-05-161-1/+5
|
* Remove lower_path from AssistCtx to SemanticEdwin Cheng2020-05-011-1/+6
|
* ?Jonas Schievink2020-04-291-5/+1
|
* Use or-patterns moreJonas Schievink2020-04-291-10/+9
|
* Remove `.clone()`Jonas Schievink2020-04-291-8/+8
|
* Rename to associated_type_shorthand_candidatesJonas Schievink2020-04-291-2/+2
|
* Complete assoc. items on type parametersJonas Schievink2020-04-291-1/+46
|
* Rename StructField -> FieldAleksey Kladov2020-04-251-18/+9
|
* Convert code to text-sizeAleksey Kladov2020-04-251-9/+9
|
* Fix goto definition for record patternsAleksey Kladov2020-04-181-0/+4
|
* Correctly highlight ranges of diagnostics from macrosAleksey Kladov2020-04-171-0/+8
| | | | closes #2799
* Move computation of missing fields into hirAleksey Kladov2020-04-071-9/+19
|
* Check for eprintln on CIAleksey Kladov2020-04-061-1/+1
|
* Always expand macros during analysisAleksey Kladov2020-03-251-3/+3
|
* Fix typoEdwin Cheng2020-03-221-1/+1
| | | Co-Authored-By: Veetaha <[email protected]>
* Add find_node_at_offset_with_descendEdwin Cheng2020-03-221-1/+28
|
* Use `dyn Trait` for working with databseAleksey Kladov2020-03-161-11/+11
| | | | | | | It improves compile time in `--release` mode quite a bit, it doesn't really slow things down and, conceptually, it seems closer to what we want the physical architecture to look like (we don't want to monomorphise EVERYTHING in a single leaf crate).
* Restore cargo-fmt gatingAleksey Kladov2020-03-131-2/+2
|
* fix issue 3444Josh Mcguigan2020-03-131-1/+7
|
* Move hypothetical expansion to hir_expandFlorian Diebold2020-03-081-21/+3
|