Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | introduce marking infrastructure for maintainable tests | Aleksey Kladov | 2019-01-10 | 1 | -0/+2 | |
|/ | | | | This also fixes a particular edge case in name resolution. | |||||
* | show field types in completion | Aleksey Kladov | 2019-01-09 | 1 | -1/+1 | |
| | ||||||
* | Fix typos in ARCHITECTURE.md and a number of crates | Marcus Klaas de Vries | 2019-01-09 | 1 | -3/+3 | |
| | | | | specifically: gen_lsp_server, ra_arena, ra_cli, ra_db, ra_hir | |||||
* | move function to code_model_api | Aleksey Kladov | 2019-01-08 | 1 | -10/+3 | |
| | ||||||
* | remove FnSignatureInfo from hir | Aleksey Kladov | 2019-01-08 | 1 | -2/+0 | |
| | ||||||
* | dont reexport module id | Aleksey Kladov | 2019-01-08 | 1 | -1/+0 | |
| | ||||||
* | move variants to API | Aleksey Kladov | 2019-01-08 | 1 | -1/+1 | |
| | ||||||
* | move enum to code_model_api | Aleksey Kladov | 2019-01-08 | 1 | -2/+1 | |
| | ||||||
* | move stuct to code_model_api | Aleksey Kladov | 2019-01-08 | 1 | -1/+2 | |
| | ||||||
* | fix after rebase | Aleksey Kladov | 2019-01-06 | 1 | -1/+2 | |
| | ||||||
* | flatten module structure | Aleksey Kladov | 2019-01-06 | 1 | -4/+7 | |
| | ||||||
* | kill old module | Aleksey Kladov | 2019-01-06 | 1 | -0/+2 | |
| | ||||||
* | move crate to code_model_api | Aleksey Kladov | 2019-01-06 | 1 | -3/+4 | |
| | ||||||
* | Add fn signature query | Florian Diebold | 2019-01-06 | 1 | -1/+1 | |
| | ||||||
* | Make FnScopes use hir::Expr | Florian Diebold | 2019-01-05 | 1 | -1/+1 | |
| | | | | | | This was a bit complicated. I've added a wrapper type for now that does the LocalSyntaxPtr <-> ExprId translation; we might want to get rid of that or give it a nicer interface. | |||||
* | Add HIR Expr machinery | Florian Diebold | 2019-01-05 | 1 | -0/+1 | |
| | ||||||
* | Add HIR for impl blocks | Florian Diebold | 2019-01-04 | 1 | -0/+2 | |
| | | | | | | | | | Since we need to be able to go from def to containing impl block, as well as the other direction, and to find all impls for a certain type, a design similar to the one for modules, where we collect all impls for the whole crate and keep them in an arena, seemed fitting. The ImplBlock type, which provides the public interface, then consists only of an Arc to the arena containing all impls, and the index into it. | |||||
* | remove id arena | Aleksey Kladov | 2019-01-04 | 1 | -1/+0 | |
| | ||||||
* | comments | Aleksey Kladov | 2019-01-02 | 1 | -0/+1 | |
| | ||||||
* | move macro id to ids | Aleksey Kladov | 2019-01-01 | 1 | -2/+2 | |
| | ||||||
* | move more stuff to ids | Aleksey Kladov | 2019-01-01 | 1 | -176/+2 | |
| | ||||||
* | rename MFileId -> HirFileId | Aleksey Kladov | 2019-01-01 | 1 | -8/+8 | |
| | ||||||
* | introduce ids module | Aleksey Kladov | 2019-01-01 | 1 | -14/+2 | |
| | ||||||
* | use MFile | Aleksey Kladov | 2019-01-01 | 1 | -7/+14 | |
| | ||||||
* | introduce MFileId | Aleksey Kladov | 2019-01-01 | 1 | -0/+7 | |
| | ||||||
* | save top-level macros in module items | Aleksey Kladov | 2019-01-01 | 1 | -4/+16 | |
| | ||||||
* | rename | Aleksey Kladov | 2019-01-01 | 1 | -1/+1 | |
| | ||||||
* | move more macros to hir | Aleksey Kladov | 2019-01-01 | 1 | -1/+1 | |
| | ||||||
* | use macros database in analysis | Aleksey Kladov | 2019-01-01 | 1 | -0/+1 | |
| | ||||||
* | introduce MacrosDatabase | Aleksey Kladov | 2019-01-01 | 1 | -0/+1 | |
| | ||||||
* | introduce known names | Aleksey Kladov | 2018-12-27 | 1 | -1/+1 | |
| | ||||||
* | introduce hir::Name | Aleksey Kladov | 2018-12-27 | 1 | -0/+3 | |
| | ||||||
* | Add a hir::TypeRef as an intermediate between ast::TypeRef and ty::Ty | Florian Diebold | 2018-12-25 | 1 | -0/+1 | |
| | ||||||
* | Implement basic completion for fields | Florian Diebold | 2018-12-25 | 1 | -0/+1 | |
| | ||||||
* | Collect field data for structs/enum variants | Florian Diebold | 2018-12-25 | 1 | -0/+6 | |
| | ||||||
* | Do name resolution by namespace (types/values) | Florian Diebold | 2018-12-25 | 1 | -11/+14 | |
| | ||||||
* | Add basic HIR and types for structs/enums | Florian Diebold | 2018-12-25 | 1 | -2/+16 | |
| | ||||||
* | Resolve paths to defs (functions currently) during type inference | Florian Diebold | 2018-12-23 | 1 | -1/+18 | |
| | ||||||
* | Add beginnings of type infrastructure | Florian Diebold | 2018-12-23 | 1 | -0/+1 | |
| | ||||||
* | moar icons | Aleksey Kladov | 2018-12-21 | 1 | -1/+1 | |
| | ||||||
* | File module source does not depend on syntax | Aleksey Kladov | 2018-12-18 | 1 | -1/+2 | |
| | ||||||
* | Work around a bug | Aleksey Kladov | 2018-12-18 | 1 | -4/+7 | |
| | | | | cc #288 | |||||
* | verbose assertions in SourceFileItems | Aleksey Kladov | 2018-12-09 | 1 | -6/+15 | |
| | ||||||
* | more crate boilerplate | Aleksey Kladov | 2018-12-09 | 1 | -1/+0 | |
| | ||||||
* | hir::Crate boilerplate | Aleksey Kladov | 2018-12-09 | 1 | -2/+6 | |
| | ||||||
* | Check Fileid in SourceFileMap | Aleksey Kladov | 2018-12-09 | 1 | -2/+18 | |
| | ||||||
* | move fuzzy source binding to a separete mode | Aleksey Kladov | 2018-12-05 | 1 | -0/+1 | |
| | ||||||
* | minor | Aleksey Kladov | 2018-12-04 | 1 | -5/+11 | |
| | ||||||
* | Add functions to DefId | Aleksey Kladov | 2018-12-04 | 1 | -17/+3 | |
| | ||||||
* | module-scoped defloc | Aleksey Kladov | 2018-12-04 | 1 | -12/+15 | |
| |