forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed rust-lang#14 and implemented very first steps for struct traver…
…sal.
- Loading branch information
1 parent
a35786f
commit 87909a0
Showing
8 changed files
with
98 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
version bump: 1.0.0 -> (TechnicallyBreaking) -> 1.1.0 | ||
Addition: a | ||
Addition: Abc | ||
Addition: Abc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
version bump: 1.0.0 -> (TechnicallyBreaking) -> 1.1.0 | ||
Addition: c | ||
Addition: Abc | ||
Addition: b | ||
Addition: Abc | ||
Addition: Abc | ||
Addition: c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
version bump: 1.0.0 -> (Breaking) -> 2.0.0 | ||
Removal: Abc | ||
Abc - | ||
KindDifference |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
version bump: 1.0.0 -> (Breaking) -> 2.0.0 | ||
Removal: Abc | ||
Removal: a | ||
Removal: Abc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
version bump: 1.0.0 -> (Breaking) -> 2.0.0 | ||
Removal: Abc | ||
Removal: b | ||
Removal: c | ||
Removal: Abc | ||
Removal: Abc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
old: oldandnew::old::Abc | ||
new: oldandnew::new::Abc | ||
old: oldandnew::old::Def | ||
new: oldandnew::new::Def | ||
old: oldandnew::old::Efg | ||
new: oldandnew::new::Efg | ||
version bump: 1.0.0 -> (NonBreaking) -> 1.1.0 | ||
Def - | ||
TypeParameterAdded { defaulted: true } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
version bump: 1.0.0 -> (Breaking) -> 2.0.0 | ||
G - | ||
TypeParameterRemoved { defaulted: false } | ||
C - | ||
RegionParameterRemoved | ||
F - | ||
TypeParameterRemoved { defaulted: true } | ||
A - | ||
FieldTypeChanged("expected u8, found u16") | ||
B - | ||
RegionParameterAdded | ||
E - | ||
TypeParameterAdded { defaulted: false } | ||
C - | ||
RegionParameterRemoved | ||
D - | ||
TypeParameterAdded { defaulted: true } | ||
FieldTypeChanged("expected reference, found tuple") | ||
F - | ||
TypeParameterRemoved { defaulted: true } | ||
B - | ||
RegionParameterAdded | ||
G - | ||
TypeParameterRemoved { defaulted: false } |