aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Finalize Trait grammarAleksey Kladov2020-07-3042-92/+92
|
* Fix param gramamrAleksey Kladov2020-07-301-2/+5
|
* fmtAleksey Kladov2020-07-302-6/+5
|
* Finalize const&static grammarAleksey Kladov2020-07-3039-137/+138
|
* Finalize Enum grammarAleksey Kladov2020-07-301-1/+1
|
* Rename EnumVariant -> VariantAleksey Kladov2020-07-3032-86/+86
|
* Rename EnumDef -> EnumAleksey Kladov2020-07-3035-83/+83
|
* Rename StructDef -> StructAleksey Kladov2020-07-3063-163/+163
|
* Finalize union grammarAleksey Kladov2020-07-3023-51/+51
|
* Finalize structs grammarAleksey Kladov2020-07-302-5/+3
|
* SimplifyAleksey Kladov2020-07-302-36/+26
|
* Simplify codegenAleksey Kladov2020-07-302-26/+25
|
* Merge #5597bors[bot]2020-07-3054-228/+219
|\ | | | | | | | | | | | | | | | | | | | | 5597: Rename FieldDef -> Field r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * Rename FieldDef -> FieldAleksey Kladov2020-07-3054-228/+219
| |
* | Merge #5595bors[bot]2020-07-3038-139/+145
|\| | | | | | | | | | | | | | | | | | | | | 5595: Rename RecordLit -> RecordExpr r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * Rename RecordLit -> RecordExprAleksey Kladov2020-07-3038-135/+140
| |
| * Minor, reorderAleksey Kladov2020-07-301-4/+5
| |
* | Merge #5593bors[bot]2020-07-301-3/+8
|\ \ | |/ |/| | | | | | | | | | | 5593: Code shuffle resiliently r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * Code shuffle resilientlyAleksey Kladov2020-07-301-3/+8
| |
* | Merge #5592bors[bot]2020-07-3053-154/+155
|\ \ | |/ |/| | | | | | | | | | | | | | | | | 5592: Rename TypeParamList -> GenericParamList r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * Rename TypeParamList -> GenericParamListAleksey Kladov2020-07-3053-154/+155
| |
* | Merge #5591bors[bot]2020-07-30272-823/+822
|\| | | | | | | | | | | | | | | | | | | | | 5591: Rename TypeAliasDef -> TypeAlias r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * Rename TypeAliasDef -> TypeAliasAleksey Kladov2020-07-3065-155/+146
| |
| * Rename FnDef -> FnAleksey Kladov2020-07-30244-674/+682
| |
* | Merge #5588bors[bot]2020-07-301-3/+10
|\| | | | | | | | | | | | | | | | | | | | | 5588: Print errors when failing to create a perf counter r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * Print errors when failing to create a perf counterAleksey Kladov2020-07-301-3/+10
| |
| * Update testsAleksey Kladov2020-07-3021-54/+54
| |
| * Rename UseItem -> UseAleksey Kladov2020-07-3018-42/+43
| |
| * Add comma list to use treeAleksey Kladov2020-07-303-89/+126
| |
* | Merge #5586bors[bot]2020-07-301-8/+34
|\ \ | | | | | | | | | | | | | | | | | | | | | 5586: Add workaround for changing sysroot paths r=jonas-schievink a=lnicola Fixes #5577 Co-authored-by: Laurențiu Nicola <[email protected]>
| * | Add workaround for changing sysroot pathsLaurențiu Nicola2020-07-301-8/+34
| | |
* | | Merge #5587bors[bot]2020-07-3040-184/+222
|\ \ \ | |_|/ |/| | | | | | | | | | | | | | | | | | | | 5587: Finish use grammar r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | Update testsAleksey Kladov2020-07-3021-54/+54
| | |
| * | Rename UseItem -> UseAleksey Kladov2020-07-3018-42/+43
| | |
| * | Add comma list to use treeAleksey Kladov2020-07-303-89/+126
| |/
* | Merge #5567bors[bot]2020-07-302-20/+111
|\ \ | |/ |/| | | | | | | | | | | | | | | 5567: SSR: Wrap placeholder expansions in parenthesis when necessary r=matklad a=davidlattimore e.g. `foo($a) ==> $a.to_string()` should produce `(1 + 2).to_string()` not `1 + 2.to_string()` We don't yet try to determine if the whole replacement needs to be wrapped in parenthesis. That's harder and I think perhaps less often an issue. Co-authored-by: David Lattimore <[email protected]>
| * SSR: Wrap placeholder expansions in parenthesis when necessaryDavid Lattimore2020-07-302-20/+111
| | | | | | | | | | | | | | | | | | e.g. `foo($a) ==> $a.to_string()` should produce `(1 + 2).to_string()` not `1 + 2.to_string()` We don't yet try to determine if the whole replacement needs to be wrapped in parenthesis. That's harder and I think perhaps less often an issue.
* | Merge #5585bors[bot]2020-07-3011-80/+80
|\ \ | |/ |/| | | | | | | | | | | | | 5585: Finish extern crate grammar r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * Update testsAleksey Kladov2020-07-303-5/+5
| |
| * Finish extern crates grammarAleksey Kladov2020-07-308-75/+75
|/
* Merge #5584bors[bot]2020-07-301-1/+1
|\ | | | | | | | | | | | | | | | | | | | | 5584: Rename metric r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * Rename metricAleksey Kladov2020-07-301-1/+1
| |
* | Merge #5583bors[bot]2020-07-3014-30/+34
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | 5583: Rename Rename r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | Update testsAleksey Kladov2020-07-304-11/+15
| | |
| * | Rename RenameAleksey Kladov2020-07-3011-20/+20
| | |
* | | Merge #5582bors[bot]2020-07-3047-129/+172
|\| | | |/ |/| | | | | | | | | | | | | | | | | 5582: Finish Module grammar r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * Finish Module grammarAleksey Kladov2020-07-302-1/+2
| |
| * Update testsAleksey Kladov2020-07-3033-40/+40
| |
| * Split ItemList & AssocItemListAleksey Kladov2020-07-3014-89/+131
|/
* Merge #5581bors[bot]2020-07-305-20/+125
|\ | | | | | | | | | | | | | | | | 5581: Measure instructions in addition to time r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>