aboutsummaryrefslogtreecommitdiff
path: root/crates/hir_def/src/expr.rs
Commit message (Collapse)AuthorAgeFilesLines
* Add support for lengths in array repeats, if they are literalsJade2021-05-131-2/+2
| | | | Now we will get the type of `[0u8; 4]`.
* Fix inference with conditionally compiled tailsDaniel McNab2021-05-031-2/+2
| | | | Fixes #8378
* Intern TypeRefs stored in BodyJonas Schievink2021-04-061-4/+5
| | | | Minor improvement to memory usage (1 MB or so)
* Use Box'es to reduce the size of hir_def::expr::Pat from 112 to 64 bytes on ↵Alexandru Macovei2021-04-061-3/+3
| | | | 64bit
* Use Box'es to reduce size of hir_def::expr::Expr from 128 to 72 bytes (on ↵Alexandru Macovei2021-04-061-4/+4
| | | | | | | | | | 64bit systems) Rationale: only a minority of variants used almost half the size. By keeping large members (especially in Option) behind a box the memory cost is only payed when the large variants are needed. This reduces the size Vec<Expr> needs to allocate.
* Fix recursive macro statement expansionEdwin Cheng2021-03-251-0/+4
|
* Introduce TypeCtor::ScalarLukas Wirth2021-02-281-1/+2
|
* Use block_def_map in body loweringJonas Schievink2021-02-031-0/+2
|
* Revert "Use block_def_map in body lowering"Jonas Schievink2021-02-021-2/+0
|
* Use block_def_map in body loweringJonas Schievink2021-02-011-0/+2
|
* Use ‘index’ terminology for arena consistentlyAramis Razzaghipour2021-01-171-2/+2
|
* Add support for yiled keywordDaiki Ihara2021-01-151-1/+4
|
* prepare to publish el libro de arenaAleksey Kladov2021-01-141-1/+1
|
* Fixed typos in code commentsVincent Esche2021-01-091-1/+1
|
* Merge #7021bors[bot]2020-12-241-4/+10
|\ | | | | | | | | | | | | | | 7021: Track labels in the HIR r=matklad a=Veykril Groundwork for #6966 Co-authored-by: Lukas Wirth <[email protected]>
| * Track labels in the HIRLukas Wirth2020-12-241-4/+10
| |
* | Implement const block inferenceLukas Wirth2020-12-231-1/+7
| |
* | Implement const pat inferenceLukas Wirth2020-12-231-1/+7
|/
* Merge #5971bors[bot]2020-09-131-1/+4
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 5971: Implement async blocks r=flodiebold a=oxalica Fix #4018 @flodiebold already gave a generic guide in the issue. Here's some concern about implementation detail: - Chalk doesn't support generator type yet. - Adding generator type as a brand new type (ctor) can be complex and need to *re-introduced* builtin impls. (Like how we implement closures before native closure support of chalk, which is already removed in #5401 ) - The output type of async block should be known after type inference of the whole body. - We cannot directly get the type from source like return-positon-impl-trait. But we still need to provide trait bounds when chalk asking for `opaque_ty_data`. - During the inference, the output type of async block can be temporary unknown and participate the later inference. `let a = async { None }; let _: i32 = a.await.unwrap();` So in this PR, the type of async blocks is inferred as an opaque type parameterized by the `Future::Output` type it should be, like what we do with closure type. And it really works now. Well, I still have some questions: - The bounds `AsyncBlockImplType<T>: Future<Output = T>` is currently generated in `opaque_ty_data`. I'm not sure if we should put this code here. - Type of async block is now rendered as `impl Future<Output = OutputType>`. Do we need to special display to hint that it's a async block? Note that closure type has its special format, instead of `impl Fn(..) -> ..` or function type. Co-authored-by: oxalica <[email protected]>
| * Implement async blocksoxalica2020-09-101-1/+4
| |
* | Implement box pattern inferenceJonas Schievink2020-09-121-0/+2
|/
* Rename ra_hir_def -> hir_defAleksey Kladov2020-08-131-0/+420