Created with <3 with dartpad.dev.
Last active
December 21, 2022 00:00
-
-
Save priezz/dfbc606c6c980a3be963c89e1a833e7e to your computer and use it in GitHub Desktop.
Pattern matching 3
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
abstract class CarPart {} | |
class Engine implements CarPart { | |
const Engine({ | |
required this.cylinders, | |
required this.horsepower, | |
}); | |
final int cylinders; | |
final int horsepower; | |
} | |
class Transmission implements CarPart { | |
const Transmission({ | |
required this.gears, | |
required this.isManual, | |
}); | |
final int gears; | |
final bool isManual; | |
} | |
class Car { | |
const Car( | |
this.model, { | |
required this.parts, | |
}); | |
final String model; | |
final List<CarPart> parts; | |
String get description => [ | |
'These are the parts in a $model:', | |
for (final part in parts) '- ${_getDescriptionForCarPart(part)}', | |
'- And a whole bunch of other parts which I was too lazy to mention.', | |
].join('\n'); | |
} | |
String _getDescriptionForCarPart(CarPart part) { | |
if (part is Engine) { | |
return 'A ${part.cylinders} cylinder engine ' | |
'which makes ${part.horsepower}hp.'; | |
} else { | |
part as Transmission; | |
return 'A ${part.gears} speed ' | |
'${part.isManual ? 'manual' : 'automatic'} transmission.'; | |
} | |
} | |
void main(List<String> args) => print( | |
const Car( | |
'Nissan Skyline GT-R', | |
parts: [ | |
Engine(cylinders: 6, horsepower: 300), | |
Transmission(gears: 7, isManual: true), | |
], | |
).description, | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment