Sign in
dart
/
sdk
/
base
/
.
/
pkg
/
front_end
/
testcases
/
regress
/
invalid_this_reference_02.dart.textual_outline.expect
blob: 2781a507509c8deea31150a337c33a50fd6339be [
file
] [
log
] [
blame
]
extension type
Foo
(
String
x
)
{
static
const
int
x1
=
42
;
int
x2
=
42
;
int
bar1
({
int
baz
=
x2
})
=>
42
;
int
bar2
({
int
baz
=
x
})
=>
42
;
}