Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | always produce source for import | Aleksey Kladov | 2019-04-02 | 1 | -2/+2 |
| | |||||
* | fix a panic with glob-import missing a source map | Aleksey Kladov | 2019-04-02 | 1 | -1/+1 |
| | |||||
* | rename flavor to kind | Aleksey Kladov | 2019-04-02 | 1 | -4/+4 |
| | |||||
* | add typed ids | Aleksey Kladov | 2019-03-26 | 1 | -10/+8 |
| | |||||
* | store macro def inside macro id | Aleksey Kladov | 2019-03-26 | 1 | -1/+1 |
| | | | | | | | | This solves the problem of "macro expansion can't call into name resolution, because name resolution calls back into macro expansion" Because we store macro def as a part of call id, macro expansion just knows the def! | ||||
* | switch modules to new diagnostics | Aleksey Kladov | 2019-03-25 | 1 | -17/+2 |
| | |||||
* | rename persistent hir database -> def database | Aleksey Kladov | 2019-03-23 | 4 | -23/+14 |
| | |||||
* | rename ModuleId -> CrateModuleId | Aleksey Kladov | 2019-03-17 | 1 | -2/+2 |
| | |||||
* | Reorganize name resolution | Aleksey Kladov | 2019-03-17 | 1 | -2/+1 |
| | |||||
* | remove lower module | Aleksey Kladov | 2019-03-17 | 1 | -2/+2 |
| | |||||
* | Replace module_tree with CrateDefMap | Aleksey Kladov | 2019-03-17 | 2 | -34/+67 |
| | |||||
* | align lower module query names | Aleksey Kladov | 2019-03-02 | 1 | -1/+1 |
| | |||||
* | Remove `TypeRef` from item opts which implement TypeAscriptionOwner | Ville Penttinen | 2019-02-27 | 1 | -3/+3 |
| | |||||
* | Use TypeAscriptionOwner | Ville Penttinen | 2019-02-26 | 1 | -8/+5 |
| | | | | | | This replaces places where we would use node + node.type_ref() with things that have an ascribed type, with using the TypeAscriptionOwner as the trait bound so we can simply pass the node. | ||||
* | Move ConstSignature creation to a single method | Ville Penttinen | 2019-02-25 | 1 | -17/+13 |
| | |||||
* | Add static type inference | Ville Penttinen | 2019-02-25 | 1 | -1/+16 |
| | |||||
* | Add const type inference | Ville Penttinen | 2019-02-25 | 1 | -0/+26 |
| | |||||
* | Handle impl generics in method calls | Florian Diebold | 2019-02-16 | 1 | -12/+1 |
| | |||||
* | Turn ImplBlock into a copy type just containing IDs | Florian Diebold | 2019-02-16 | 1 | -17/+5 |
| | | | | | | | This makes it more like the other code model types. Also make Module::definition_source/declaration_source return HirFileIds, to make them more like the other source functions. | ||||
* | reformat the world | Aleksey Kladov | 2019-02-08 | 3 | -25/+6 |
| | |||||
* | Sketching the resolver API | Florian Diebold | 2019-02-01 | 1 | -4/+2 |
| | |||||
* | split HirDatabase api | csmoe | 2019-02-01 | 3 | -11/+22 |
| | |||||
* | Rename FnScopes -> ExprScopes | Florian Diebold | 2019-01-30 | 2 | -514/+0 |
| | | | | | The reason for this is that it describes scopes for any body expression, not just that of a function. It did not actually refer to functions at all anymore. | ||||
* | Use Crate instead of CrateId | Aleksey Kladov | 2019-01-30 | 2 | -13/+6 |
| | |||||
* | Go to Implementation for structs and enums | Jeremy Kolb | 2019-01-30 | 1 | -1/+12 |
| | |||||
* | remove Option<SourceFileItemId> hack | Aleksey Kladov | 2019-01-26 | 1 | -5/+5 |
| | |||||
* | simplify | Aleksey Kladov | 2019-01-25 | 1 | -9/+3 |
| | |||||
* | remove useless wrapper | Aleksey Kladov | 2019-01-25 | 1 | -5/+0 |
| | |||||
* | write path resolution code only once | Aleksey Kladov | 2019-01-25 | 1 | -60/+3 |
| | |||||
* | Migrate trait & type to new ids | Aleksey Kladov | 2019-01-24 | 1 | -6/+1 |
| | |||||
* | move consts&statics to new id | Aleksey Kladov | 2019-01-24 | 1 | -1/+5 |
| | |||||
* | remove boilerplate | Aleksey Kladov | 2019-01-24 | 1 | -13/+1 |
| | |||||
* | generalize boilerplate | Aleksey Kladov | 2019-01-24 | 1 | -4/+0 |
| | |||||
* | move enum variant to the new API | Aleksey Kladov | 2019-01-24 | 1 | -2/+2 |
| | |||||
* | remove useless aliases | Aleksey Kladov | 2019-01-24 | 1 | -3/+3 |
| | |||||
* | migrate enums to new id | Aleksey Kladov | 2019-01-24 | 1 | -24/+18 |
| | |||||
* | new struct id | Aleksey Kladov | 2019-01-24 | 1 | -1/+1 |
| | |||||
* | Functions use new id scheme | Aleksey Kladov | 2019-01-24 | 2 | -11/+19 |
| | |||||
* | Change ids strategy | Aleksey Kladov | 2019-01-24 | 2 | -125/+79 |
| | | | | | | | this is a part of larghish hir refactoring which aims to * replace per-source-root module trees with per crate trees * switch from a monotyped DedId to type-specific ids | ||||
* | move SyntaxPtr to ra_syntax | Aleksey Kladov | 2019-01-23 | 1 | -7/+6 |
| | |||||
* | fix completion bugs | gfreezy | 2019-01-23 | 1 | -0/+4 |
| | |||||
* | Move docs to Function | Jeremy Kolb | 2019-01-22 | 1 | -4/+1 |
| | |||||
* | Thread documentation through FnSignature and CompletionItem | Jeremy Kolb | 2019-01-22 | 1 | -1/+5 |
| | |||||
* | Make Module impl methods crate-private, update some comments | Florian Diebold | 2019-01-19 | 1 | -6/+9 |
| | |||||
* | Add AST/HIR for type args in path segments | Florian Diebold | 2019-01-19 | 1 | -4/+6 |
| | |||||
* | Refactor/simplify path resolution | Florian Diebold | 2019-01-19 | 1 | -31/+33 |
| | |||||
* | Address issues flagged in review | Marcus Klaas de Vries | 2019-01-19 | 1 | -2/+0 |
| | |||||
* | Fixup annotated bindings | Marcus Klaas de Vries | 2019-01-19 | 1 | -4/+11 |
| | |||||
* | Add initial (flawed) implementation of binding annotations | Marcus Klaas de Vries | 2019-01-19 | 1 | -1/+1 |
| | |||||
* | Add additional pattern variants | Marcus Klaas de Vries | 2019-01-19 | 1 | -0/+11 |
| |