Sign in
dart
/
sdk.git
/
3b718daac6f227b77ccb38fd35c1d89041feabc5
/
.
/
pkg
/
front_end
/
testcases
/
extensions
/
null_aware.dart.textual_outline.expect
blob: a7b5bbefc3241ba5deef28bbcee97c7372ac0f29 [
file
] [
log
] [
blame
]
class
Class
{
int
?
field
;
}
extension
Extension
on
Class
{
int
?
get
property
=>
field
;
void
set
property
(
int
?
value
)
{}
int
?
method
()
=>
field
;
testImplicitThis
()
{}
}
main
()
{}
test1
(
Class
?
c
)
{}
test2
(
Class
?
c
)
{}
expect
(
expected
,
actual
)
{}