blob: af89663fa17f90d9f28b6462586ec5427e0eb69b [file] [log] [blame]
class Class {}
extension Extension on Class {
static method() {}
static genericMethod<T>(T t) {}
static get property => 42;
static set property(value) {}
static var field;
instanceMethod() {}
get instanceProperty => 42;
set instanceProperty(value) {}
}
main() {}