Sign in
dart
/
sdk
/
c4962efa659743cf9fb395c25d69b86cdb5fcfd5
/
.
/
pkg
/
front_end
/
testcases
/
general
/
super_access_in_initializer.dart.textual_outline.expect
blob: 188efcec852805a3827bec73770dc30ebdbcb3c2 [
file
] [
log
] [
blame
]
class
Super
{
bool
get
property
=>
true
;
Super
(
bool
value
);
}
class
Class
extends
Super
{
bool
field
;
Class
(
bool
value
)
:
assert
(
property
),
this
.
field
=
property
,
super
(
property
);
Class
.
redirect
()
:
this
(
property
);
}
main
()
{}