Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc(mixins): Add override annotation on some code examples #6240

Merged
merged 2 commits into from
Dec 2, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Update mixins.md
  • Loading branch information
tilucasoli committed Nov 27, 2024
commit ad9037dc1ae8d0ebaa29b436fbdb7ce3ca81716d
7 changes: 7 additions & 0 deletions src/content/language/mixins.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@ mixin Musician {
}

class Virtuoso with Musician {

@override
void playInstrument(String instrumentName) { // Subclass must define.
print('Plays the $instrumentName beautifully');
}
Expand All @@ -104,7 +106,10 @@ of a mixin, by calling getters which are defined as abstract on the mixin:
mixin NameIdentity {
String get name;

@override
int get hashCode => name.hashCode;

@override
bool operator ==(other) => other is NameIdentity && name == other.name;
}

Expand Down Expand Up @@ -135,6 +140,8 @@ mixin Guitarist implements Tuner {
}

class PunkRocker with Guitarist {

@override
void tuneInstrument() {
print("Don't bother, being out of tune is punk rock.");
}
Expand Down