Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Finish rename | Aleksey Kladov | 2020-07-31 | 1 | -3/+3 |
| | |||||
* | Unify naming of tuple fields | Aleksey Kladov | 2020-07-31 | 1 | -3/+3 |
| | |||||
* | Rename DotDotPat -> RestPat | Aleksey Kladov | 2020-07-31 | 1 | -3/+3 |
| | |||||
* | Rename BindPat -> IdentPat | Aleksey Kladov | 2020-07-31 | 1 | -1/+1 |
| | |||||
* | Rename PalceholderPat -> WildcardPat | Aleksey Kladov | 2020-07-31 | 1 | -1/+1 |
| | |||||
* | Reorder | Aleksey Kladov | 2020-07-31 | 1 | -1/+0 |
| | |||||
* | Allign RecordPat with RecordExpr | Aleksey Kladov | 2020-07-31 | 1 | -21/+18 |
| | |||||
* | Rename TypeArgList -> GenericArgList | Aleksey Kladov | 2020-07-31 | 1 | -1/+1 |
| | |||||
* | Minor | Aleksey Kladov | 2020-07-31 | 1 | -3/+0 |
| | |||||
* | Rename LambdaExpr -> ClosureExpr | Aleksey Kladov | 2020-07-31 | 1 | -1/+1 |
| | |||||
* | Work on expressions grammar | Aleksey Kladov | 2020-07-31 | 1 | -5/+17 |
| | |||||
* | Item is a Stmt | Aleksey Kladov | 2020-07-31 | 1 | -10/+20 |
| | |||||
* | Use ty to access most TypeRefs | Aleksey Kladov | 2020-07-30 | 1 | -5/+3 |
| | |||||
* | Remove TypeAscriptionOwner | Aleksey Kladov | 2020-07-30 | 1 | -5/+3 |
| | |||||
* | Finalize impl Grammar | Aleksey Kladov | 2020-07-30 | 1 | -1/+1 |
| | |||||
* | Finalize Trait grammar | Aleksey Kladov | 2020-07-30 | 1 | -1/+1 |
| | |||||
* | Finalize const&static grammar | Aleksey Kladov | 2020-07-30 | 1 | -2/+2 |
| | |||||
* | Rename EnumDef -> Enum | Aleksey Kladov | 2020-07-30 | 1 | -1/+1 |
| | |||||
* | Rename StructDef -> Struct | Aleksey Kladov | 2020-07-30 | 1 | -1/+1 |
| | |||||
* | Finalize union grammar | Aleksey Kladov | 2020-07-30 | 1 | -1/+1 |
| | |||||
* | Rename RecordLit -> RecordExpr | Aleksey Kladov | 2020-07-30 | 1 | -2/+2 |
| | |||||
* | Rename TypeAliasDef -> TypeAlias | Aleksey Kladov | 2020-07-30 | 1 | -1/+1 |
| | |||||
* | Rename FnDef -> Fn | Aleksey Kladov | 2020-07-30 | 1 | -1/+1 |
| | |||||
* | Rename UseItem -> Use | Aleksey Kladov | 2020-07-30 | 1 | -1/+1 |
| | |||||
* | Finish extern crates grammar | Aleksey Kladov | 2020-07-30 | 1 | -1/+1 |
| | |||||
* | Rename ModuleItem -> Item | Aleksey Kladov | 2020-07-29 | 1 | -14/+14 |
| | |||||
* | Cleanup changes leftover from previous tracking attempt | Paul Daniel Faria | 2020-06-27 | 1 | -14/+16 |
| | |||||
* | Remove track_parent and parent_map, replace with simple walk in missign ↵ | Paul Daniel Faria | 2020-06-27 | 1 | -271/+98 |
| | | | | unsafe validator | ||||
* | Fix issues caused during rebase | Paul Daniel Faria | 2020-06-27 | 1 | -45/+63 |
| | |||||
* | unsafe: Clean up, improve tracking, add debug_assert | Paul Daniel Faria | 2020-06-27 | 1 | -80/+157 |
| | | | | | | Move unsafe_expressions to unsafe_validation.rs, replace vec tracking of child exprs with inline macro, add debug assert to ensure tracked children match walked children exactly | ||||
* | Track expr parents during lowering, use parent map when checking if unsafe ↵ | Paul Daniel Faria | 2020-06-27 | 1 | -88/+164 |
| | | | | exprs are within unsafe blocks | ||||
* | Rename Expr::UnsafeBlock to Expr::Unsafe | Paul Daniel Faria | 2020-06-27 | 1 | -1/+1 |
| | |||||
* | Track unsafe blocks, don't trigger missing unsafe diagnostic when unsafe ↵ | Paul Daniel Faria | 2020-06-27 | 1 | -1/+5 |
| | | | | exprs within unsafe block | ||||
* | Make find_inner_item fallible | Jonas Schievink | 2020-06-26 | 1 | -14/+15 |
| | | | | | The ItemTree does not collect incomplete items, such as traits with no name, so the (malformed) AST node might have no corresponding item. | ||||
* | find_inner_item: more detailed panic message | Jonas Schievink | 2020-06-26 | 1 | -1/+7 |
| | |||||
* | Simplify inner item lowering | Jonas Schievink | 2020-06-26 | 1 | -61/+30 |
| | |||||
* | Use a HashMap instead of Vec | Jonas Schievink | 2020-06-24 | 1 | -8/+9 |
| | | | | | This is no longer enforcing stack discipline, so a Vec isn't necessary or helpful | ||||
* | Remove unneeded HirFileId argument | Jonas Schievink | 2020-06-24 | 1 | -4/+3 |
| | |||||
* | Merge item tree traits | Jonas Schievink | 2020-06-24 | 1 | -2/+2 |
| | | | | | The Source trait isn't needed anymore since we no longer merge extern crate items with use items. | ||||
* | Collect inner items in expression macros | Jonas Schievink | 2020-06-24 | 1 | -1/+3 |
| | |||||
* | draw the rest of the owl | Jonas Schievink | 2020-06-24 | 1 | -51/+122 |
| | |||||
* | Hook up query, add impls, lower moar | Jonas Schievink | 2020-06-24 | 1 | -4/+3 |
| | |||||
* | Start item tree | Aleksey Kladov | 2020-06-24 | 1 | -3/+4 |
| | |||||
* | fmt | robojumper | 2020-05-31 | 1 | -10/+20 |
| | |||||
* | correctly infer labelled breaks | robojumper | 2020-05-31 | 1 | -11/+45 |
| | |||||
* | Support raw_ref_op's raw reference operator | robojumper | 2020-05-28 | 1 | -3/+16 |
| | |||||
* | Switch to new magic marks | Aleksey Kladov | 2020-05-20 | 1 | -2/+2 |
| | |||||
* | Create LowerCtx on the fly | Edwin Cheng | 2020-05-17 | 1 | -9/+10 |
| | |||||
* | Merge #4305 | bors[bot] | 2020-05-05 | 1 | -3/+10 |
|\ | | | | | | | | | | | | | | | 4305: Favor types for record type struct in name resolution r=matklad a=edwin0cheng Fixed #4235 Co-authored-by: Edwin Cheng <[email protected]> | ||||
| * | Change favor_types to has_constructor | Edwin Cheng | 2020-05-04 | 1 | -4/+4 |
| | |