blob: 0b4d826881c0db15547d5e89c97a3847eca092ab [file] [log] [blame]
abstract class DiagnosticsNode {
DiagnosticsNode({
this.showName = true,
});
final bool showName;
}
class DiagnosticsProperty extends DiagnosticsNode {
DiagnosticsProperty({
super.showName,
});
DiagnosticsProperty.lazy({
super.showName,
});
}
class NumProperty extends DiagnosticsProperty {
NumProperty({
super.showName,
});
NumProperty.lazy({
super.showName,
}) : super.lazy();
}
void main() {}