Sign in
dart
/
sdk.git
/
refs/tags/2.14.0-347.0.dev
/
.
/
pkg
/
front_end
/
testcases
/
extensions
/
instance_access_of_static.dart.textual_outline_modelled.expect
blob: 61592f56c54bd142f0b051ddaf0a30378edf3bc7 [
file
] [
log
] [
blame
]
// @dart = 2.9
class
Class1
{}
extension
Extension1
on
Class1
{
static
get
staticProperty
{}
static
set
staticProperty
(
int
value
)
{}
static
staticMethod
()
{}
static
var
staticField
=
42
;
}
main
()
{}