Sign in
dart
/
sdk
/
base
/
.
/
pkg
/
front_end
/
testcases
/
dot_shorthands
/
equality_property.dart.textual_outline.expect
blob: bb5d7d3614603d60a2ca240877b0436703b00509 [
file
] [
log
] [
blame
]
class
Color
{
final
int
x
;
static
Color
get
red
=>
Color
(
1
);
static
Color
get
blue
=>
Color
(
2
);
Color
(
this
.
x
);
}
void
main
()
{}