aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir_def/src/item_tree
Commit message (Collapse)AuthorAgeFilesLines
* Rename ra_syntax -> syntaxAleksey Kladov2020-08-122-33/+33
|
* Rename ra_arenaAleksey Kladov2020-08-121-1/+1
|
* RenameAleksey Kladov2020-07-311-2/+2
|
* Rename TypeRef -> TypeAleksey Kladov2020-07-311-2/+2
| | | | | | | | | | The TypeRef name comes from IntelliJ days, where you often have both type *syntax* as well as *semantical* representation of types in scope. And naming both Type is confusing. In rust-analyzer however, we use ast types as `ast::Type`, and have many more semantic counterparts to ast types, so avoiding name clash here is just confusing.
* Use ty to access most TypeRefsAleksey Kladov2020-07-301-3/+3
|
* Remove TypeAscriptionOwnerAleksey Kladov2020-07-301-5/+5
|
* Finaize item grammarAleksey Kladov2020-07-301-0/+1
|
* Finalize impl GrammarAleksey Kladov2020-07-302-6/+6
|
* Finalize Trait grammarAleksey Kladov2020-07-302-6/+6
|
* Finalize const&static grammarAleksey Kladov2020-07-302-9/+9
|
* Rename EnumVariant -> VariantAleksey Kladov2020-07-301-2/+2
|
* Rename EnumDef -> EnumAleksey Kladov2020-07-302-4/+4
|
* Rename StructDef -> StructAleksey Kladov2020-07-302-6/+6
|
* Finalize union grammarAleksey Kladov2020-07-302-4/+4
|
* Rename FieldDef -> FieldAleksey Kladov2020-07-301-14/+15
|
* Rename TypeParamList -> GenericParamListAleksey Kladov2020-07-301-3/+3
|
* Rename TypeAliasDef -> TypeAliasAleksey Kladov2020-07-302-5/+5
|
* Rename FnDef -> FnAleksey Kladov2020-07-302-17/+17
|
* Update testsAleksey Kladov2020-07-301-2/+2
|
* Rename UseItem -> UseAleksey Kladov2020-07-301-3/+3
|
* Update testsAleksey Kladov2020-07-301-1/+1
|
* Finish extern crates grammarAleksey Kladov2020-07-301-3/+3
|
* Rename RenameAleksey Kladov2020-07-301-1/+1
|
* Split ItemList & AssocItemListAleksey Kladov2020-07-301-10/+9
|
* Rename ModuleItem -> ItemAleksey Kladov2020-07-292-42/+38
|
* Update ItemTree snapshotsJonas Schievink2020-07-141-12/+12
|
* Thread varargs through r-aJonas Schievink2020-07-141-0/+9
|
* ItemTree: Lower tuple types despite invalid typeJonas Schievink2020-07-141-7/+6
|
* Rewrite item_tree tests to expectAleksey Kladov2020-07-111-105/+109
| | | | insta review wouldn't update the test, so ...
* Extern fns are implicitly unsafeAleksey Kladov2020-07-111-0/+1
| | | | closes #4865
* Re-enable IDE features for incomplete impl blocsAleksey Kladov2020-07-091-2/+3
|
* ItemTree: Lower fields despite invalid typeJonas Schievink2020-07-011-1/+1
|
* Use IdRange for variantsJonas Schievink2020-06-252-7/+7
|
* Generalize FieldIds -> IdRange<T>Jonas Schievink2020-06-251-5/+5
|
* Collect field/variant attrs in ItemTreeJonas Schievink2020-06-252-11/+14
|
* Allow iterating fields in the ItemTreeJonas Schievink2020-06-252-8/+8
|
* Clean up and fix inner item collection a bitJonas Schievink2020-06-242-7/+38
|
* ItemTree: Use more boxed slicesJonas Schievink2020-06-242-8/+15
|
* Don't allocate empty genericsJonas Schievink2020-06-242-26/+27
|
* Don't allocate common visibilitiesJonas Schievink2020-06-242-34/+36
|
* Remove file id from item treeJonas Schievink2020-06-242-17/+18
| | | | It's not needed, and `source` is only used by tests anyways
* Slightly reduce ItemTree memory footprintJonas Schievink2020-06-241-19/+27
|
* Address more commentsJonas Schievink2020-06-241-1/+1
|
* if let else -> matchJonas Schievink2020-06-241-19/+21
|
* Unify and test attribute handlingJonas Schievink2020-06-242-27/+212
|
* Collect inner items in expression macrosJonas Schievink2020-06-241-1/+6
|
* Make generics and attr queries use ItemTreeJonas Schievink2020-06-242-2/+7
| | | | Now it's fast
* Make remaining item data queries use item treeJonas Schievink2020-06-242-10/+43
|
* draw the rest of the owlJonas Schievink2020-06-242-116/+409
|
* Lower genericsJonas Schievink2020-06-241-14/+66
|