aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir/src/expr
Commit message (Collapse)AuthorAgeFilesLines
* fix syntax errors in testsAleksey Kladov2019-05-282-3/+3
|
* simplifyAleksey Kladov2019-05-201-38/+39
|
* make AstId untypedAleksey Kladov2019-05-131-1/+1
|
* fill struct fields diagnosticSergey Parilin2019-05-061-0/+92
|
* cleanupsAleksey Kladov2019-04-131-10/+1
|
* slight encapsulationAleksey Kladov2019-04-131-7/+11
|
* move ScopeEntryWithSyntaxAleksey Kladov2019-04-131-32/+13
|
* drop obsolete fixmeAleksey Kladov2019-04-131-1/+0
|
* make expr scope stuff privateAleksey Kladov2019-04-131-11/+9
|
* fold ScopeWithSyntax into SourceAnalyzerAleksey Kladov2019-04-131-138/+28
|
* make stuff privateAleksey Kladov2019-04-131-3/+3
|
* hide some scopesAleksey Kladov2019-04-131-2/+5
|
* introduce SourceAnalyzerAleksey Kladov2019-04-111-1/+1
|
* type-safer source-map for bindingsAleksey Kladov2019-04-101-7/+8
|
* migrate to salsas interningAleksey Kladov2019-04-091-3/+5
|
* made ExprCollector pub(crate) and movedLenard Pratt2019-04-021-4/+10
| | | | collect_fn_body_syntax
* Added const bodies and static body to the astLenard Pratt2019-04-021-1/+2
| | | | | | and added inference the inference test reduce code duplication
* Added defWithBodyLenard Pratt2019-03-301-3/+3
|
* replace todo with fixmeAleksey Kladov2019-03-231-2/+2
|
* rename scopesAleksey Kladov2019-03-021-4/+4
|
* rename to source_mapAleksey Kladov2019-03-021-15/+11
|
* dont store body inside source mapAleksey Kladov2019-03-021-6/+6
|
* rename syntax-mapping -> source-mapAleksey Kladov2019-03-021-2/+2
|
* Fix some typosPascal Hertleif2019-02-121-1/+1
|
* reformat the worldAleksey Kladov2019-02-081-41/+11
|
* Some clippy cleanupskjeremy2019-02-061-2/+2
|
* Use the new Resolver API for goto defFlorian Diebold2019-02-011-1/+5
|
* Use the new Resolver API in completionFlorian Diebold2019-02-011-29/+9
|
* Implement methods to build a resolverFlorian Diebold2019-02-011-2/+9
|
* Sketching the resolver APIFlorian Diebold2019-02-011-0/+2
|
* split HirDatabase apicsmoe2019-02-011-1/+1
|
* Move expr_scopes query to its moduleFlorian Diebold2019-01-301-2/+13
|
* Rename FnScopes -> ExprScopesFlorian Diebold2019-01-301-0/+510
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.