-
Notifications
You must be signed in to change notification settings - Fork 129
Open
Labels
type-enhancementA request for a change that isn't a bugA request for a change that isn't a bug
Description
To add additional documentation in subclasses, I know the @template
macro exists.
For example:
class A {
/// Prints `a`.
void log() {
print('a');
}
}
class B extends A {
/// {@super} Then prints `b`.
void log() {
print('b');
}
}
No new line after the macro call, so it shows: "Prints a
. Then prints b
."
Metadata
Metadata
Assignees
Labels
type-enhancementA request for a change that isn't a bugA request for a change that isn't a bug