Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove ModId | Aleksey Kladov | 2018-11-20 | 1 | -5/+1 |
| | |||||
* | Make more stuff private | Aleksey Kladov | 2018-11-20 | 1 | -3/+3 |
| | |||||
* | Make most of modules impl private | Aleksey Kladov | 2018-11-20 | 3 | -12/+16 |
| | |||||
* | Use OO module API in completion | Aleksey Kladov | 2018-11-20 | 1 | -28/+15 |
| | |||||
* | Use OO API instead of resolve_module | Aleksey Kladov | 2018-11-20 | 1 | -11/+2 |
| | |||||
* | Use OO API in crate_for | Aleksey Kladov | 2018-11-20 | 1 | -2/+35 |
| | |||||
* | Make LikdId private | Aleksey Kladov | 2018-11-20 | 1 | -9/+5 |
| | |||||
* | Use more OO API for parent module | Aleksey Kladov | 2018-11-20 | 1 | -1/+78 |
| | |||||
* | Make some queries private | Aleksey Kladov | 2018-11-20 | 3 | -10/+11 |
| | | | | | Convention: we prefix private queries with `_` until salsa support real visibility. | ||||
* | use loc2id for FnIds | Aleksey Kladov | 2018-11-18 | 3 | -9/+11 |
| | |||||
* | Add Loc2IdMap | Aleksey Kladov | 2018-11-18 | 1 | -0/+9 |
| | |||||
* | Use cached module scopes for completion | Aleksey Kladov | 2018-11-07 | 2 | -2/+12 |
| | |||||
* | rename module source | Aleksey Kladov | 2018-11-07 | 2 | -24/+23 |
| | |||||
* | rename ROOT -> SOURCE_FILE | Aleksey Kladov | 2018-11-07 | 1 | -1/+1 |
| | |||||
* | Rename File -> SourceFileNode | Aleksey Kladov | 2018-11-07 | 2 | -5/+5 |
| | |||||
* | Generalize Owned nodes | Aleksey Kladov | 2018-11-06 | 3 | -11/+11 |
| | |||||
* | Fully add inline modules to module tree | Aleksey Kladov | 2018-11-05 | 2 | -19/+42 |
| | |||||
* | Submodule is enum | Aleksey Kladov | 2018-11-05 | 2 | -21/+63 |
| | |||||
* | collect all submodules | Aleksey Kladov | 2018-11-05 | 2 | -20/+30 |
| | |||||
* | submodules works with module sources | Aleksey Kladov | 2018-11-05 | 2 | -13/+20 |
| | |||||
* | use module_for_source | Aleksey Kladov | 2018-11-05 | 1 | -6/+2 |
| | |||||
* | Introduce modules_from_source fn | Aleksey Kladov | 2018-11-05 | 1 | -6/+6 |
| | |||||
* | Add inline source | Aleksey Kladov | 2018-11-01 | 3 | -35/+80 |
| | |||||
* | Introduce ModuleSource | Aleksey Kladov | 2018-11-01 | 2 | -7/+32 |
| | |||||
* | Use From to get an owned AST | Aleksey Kladov | 2018-11-01 | 1 | -2/+1 |
| | |||||
* | remove SyntaxPtrDatabase | Aleksey Kladov | 2018-11-01 | 1 | -2/+2 |
| | |||||
* | Reformat all | Aleksey Kladov | 2018-10-31 | 7 | -83/+72 |
| | |||||
* | Add DeclarationDescriptor and ReferenceDescriptor | Jeremy A. Kolb | 2018-10-31 | 1 | -3/+54 |
| | | | | | Fixes #142 Fixes #146 | ||||
* | Useful comments from function signatures | Jeremy A. Kolb | 2018-10-31 | 1 | -3/+57 |
| | |||||
* | Move completion to ra_analysis | Aleksey Kladov | 2018-10-31 | 1 | -1/+5 |
| | | | | | | While we should handle completion for isolated file, it's better achieved by using empty Analysis, rather than working only with &File: we need memoization for type inference even inside a single file. | ||||
* | move resolve local name | Aleksey Kladov | 2018-10-31 | 2 | -4/+2 |
| | |||||
* | Move FnDescriptors to analyzer | Aleksey Kladov | 2018-10-31 | 7 | -90/+595 |
| | |||||
* | Add ModuleScope as a query | Aleksey Kladov | 2018-10-30 | 3 | -1/+149 |
| | | | | | | | This is a first step towards queryifing completion and resolve. Some code currently duplicates ra_editor: the plan is to move all completion from ra_editor, but it'll take more than one commit. | ||||
* | switch to TextRange::subrange | Aleksey Kladov | 2018-10-30 | 1 | -2/+1 |
| | |||||
* | Move input to top-level | Aleksey Kladov | 2018-10-25 | 2 | -3/+4 |
| | |||||
* | Store all the data in the Salsa Database | Aleksey Kladov | 2018-10-25 | 2 | -17/+15 |
| | |||||
* | Introduce ModuleId | Aleksey Kladov | 2018-10-23 | 3 | -0/+385 |
Previously, module was synonym with a file, and so a module could have had several parents. This commit introduces a separate module concept, such that each module has only one parent, but a single file can correspond to different modules. |