Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Move hir to a separate crate | Aleksey Kladov | 2018-11-28 | 26 | -2432/+202 |
| | |||||
* | introduce hir crate | Aleksey Kladov | 2018-11-28 | 14 | -17/+2270 |
| | |||||
* | move ids to HIR | Aleksey Kladov | 2018-11-28 | 10 | -80/+71 |
| | |||||
* | move db basics to ra_db | Aleksey Kladov | 2018-11-28 | 22 | -293/+352 |
| | | | | This should allow to move hir to a separate crate | ||||
* | generalize location interner | Aleksey Kladov | 2018-11-27 | 8 | -50/+100 |
| | |||||
* | rename file_syntax -> source_file | Aleksey Kladov | 2018-11-27 | 6 | -18/+18 |
| | |||||
* | introduce SymbolsDatabase | Aleksey Kladov | 2018-11-27 | 4 | -27/+40 |
| | |||||
* | remove syntax ptr | Aleksey Kladov | 2018-11-27 | 2 | -26/+1 |
| | |||||
* | Use ItemPtr for id | Aleksey Kladov | 2018-11-27 | 4 | -18/+12 |
| | |||||
* | ItemId based module source | Aleksey Kladov | 2018-11-27 | 3 | -20/+23 |
| | |||||
* | Introduce SourceItemId | Aleksey Kladov | 2018-11-27 | 5 | -17/+24 |
| | |||||
* | rename | Aleksey Kladov | 2018-11-27 | 6 | -26/+26 |
| | |||||
* | Move FileItems up | Aleksey Kladov | 2018-11-27 | 4 | -37/+43 |
| | |||||
* | Remove unused dead code | Aleksey Kladov | 2018-11-27 | 1 | -1/+0 |
| | |||||
* | check_canceled is a method | Aleksey Kladov | 2018-11-27 | 4 | -15/+9 |
| | |||||
* | drop descriptor suffix, use hir:: instead | Aleksey Kladov | 2018-11-27 | 4 | -20/+19 |
| | |||||
* | rename ModuleDescriptor -> Module | Aleksey Kladov | 2018-11-27 | 5 | -35/+34 |
| | |||||
* | move resolve_local to Scopes | Aleksey Kladov | 2018-11-27 | 6 | -109/+105 |
| | |||||
* | rename FnDescriptior -> FnSignatureInfo | Aleksey Kladov | 2018-11-27 | 4 | -15/+21 |
| | |||||
* | move resolve_local_scope | Aleksey Kladov | 2018-11-27 | 6 | -27/+27 |
| | |||||
* | make module module private | Aleksey Kladov | 2018-11-27 | 5 | -9/+8 |
| | |||||
* | move query definitions | Aleksey Kladov | 2018-11-27 | 10 | -199/+232 |
| | |||||
* | remove underscores | Aleksey Kladov | 2018-11-27 | 5 | -22/+22 |
| | |||||
* | move hir db | Aleksey Kladov | 2018-11-27 | 3 | -66/+78 |
| | |||||
* | itroduce FunctionDescriptor | Aleksey Kladov | 2018-11-27 | 3 | -9/+36 |
| | |||||
* | rename descriptorsdb -> hirdb | Aleksey Kladov | 2018-11-27 | 7 | -33/+30 |
| | |||||
* | start descriptors -> hir rename | Aleksey Kladov | 2018-11-27 | 14 | -27/+34 |
| | |||||
* | Merge #246 | bors[bot] | 2018-11-27 | 7 | -32/+98 |
|\ | | | | | | | | | | | | | | | 246: Resolve path r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]> | ||||
| * | resolve_path works with DefIds | Aleksey Kladov | 2018-11-27 | 3 | -11/+46 |
| | | |||||
| * | use ctry | Aleksey Kladov | 2018-11-27 | 4 | -22/+13 |
| | | |||||
| * | scope-based resolve path | Aleksey Kladov | 2018-11-27 | 3 | -21/+53 |
| | | |||||
| * | add db to resolve_path | Aleksey Kladov | 2018-11-27 | 2 | -2/+2 |
| | | |||||
| * | Make resolve_path cancelable | Aleksey Kladov | 2018-11-27 | 2 | -2/+10 |
|/ | |||||
* | don't use volatile queries | Aleksey Kladov | 2018-11-27 | 2 | -4/+4 |
| | | | | | | "volatile" means "changes every time". That is, all transitive rev-deps of volatile queries will be executed every time. We actually need "dependencies". | ||||
* | Merge #245 | bors[bot] | 2018-11-27 | 7 | -87/+175 |
|\ | | | | | | | | | | | | | | | 245: File items r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]> | ||||
| * | Make nameresolution resilient to reparsing | Aleksey Kladov | 2018-11-27 | 6 | -84/+139 |
| | | | | | | | | | | We now store item id's instead of local syntax ptrs, and item ids don't change if you type inside a single function. | ||||
| * | implement file_items | Aleksey Kladov | 2018-11-27 | 1 | -2/+8 |
| | | |||||
| * | add file items query | Aleksey Kladov | 2018-11-27 | 3 | -14/+41 |
|/ | |||||
* | Merge #244 | bors[bot] | 2018-11-27 | 5 | -49/+27 |
|\ | | | | | | | | | | | | | | | 244: Switch to id-arena r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]> | ||||
| * | Switch to id-arena | Aleksey Kladov | 2018-11-27 | 5 | -49/+27 |
| | | |||||
* | | fix npm problems | Aleksey Kladov | 2018-11-27 | 2 | -39/+24 |
| | | |||||
* | | hack around nested libraries | Aleksey Kladov | 2018-11-26 | 4 | -3/+44 |
|/ | |||||
* | Merge #242 | bors[bot] | 2018-11-25 | 6 | -78/+145 |
|\ | | | | | | | | | | | | | | | 242: Codify Arena pattern r=matklad a=matklad bors r+ Co-authored-by: Aleksey Kladov <[email protected]> | ||||
| * | Codify Arena pattern | Aleksey Kladov | 2018-11-25 | 6 | -78/+145 |
|/ | |||||
* | Merge #241 | bors[bot] | 2018-11-24 | 3 | -4/+6 |
|\ | | | | | | | | | | | | | | | 241: switch back to the latest beta r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]> | ||||
| * | switch back to the latest beta | Aleksey Kladov | 2018-11-24 | 3 | -4/+6 |
|/ | |||||
* | Merge #239 | bors[bot] | 2018-11-21 | 2 | -1/+104 |
|\ | | | | | | | | | | | | | | | 239: add test loggin API to db r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]> | ||||
| * | add test loggin API to db | Aleksey Kladov | 2018-11-21 | 2 | -1/+104 |
|/ | |||||
* | Merge #238 | bors[bot] | 2018-11-21 | 2 | -2/+24 |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | 238: Use `:` as a trigger character for completion r=matklad a=matklad Note that VSCode asks for completion after *first* `:` as well: use crate: we use hacks to protect against that, and to give completions only after the second `:`. Co-authored-by: Aleksey Kladov <[email protected]> | ||||
| * | Use `:` as a trigger character for completion | Aleksey Kladov | 2018-11-21 | 2 | -2/+24 |
| | | | | | | | | | | | | | | | | | | Note that VSCode asks for completion after *first* `:` as well: use crate: we use hacks to protect against that, and to give completions only after the second `:`. |