Sign in
dart
/
sdk.git
/
9934f8dfb6e36b8c20b64a89d3c6aa981936c8d5
/
.
/
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
;
}