Sign in
dart
/
sdk.git
/
refs/tags/2.14.0-347.0.dev
/
.
/
pkg
/
front_end
/
testcases
/
general
/
redirecting_factory_metadata.dart.textual_outline.expect
blob: a9cc41fc7d85e524723f0451adea48a61bbdb0ac [
file
] [
log
] [
blame
]
// @dart = 2.9
const
forParameter
=
1
;
const
forFactoryItself
=
2
;
const
anotherForParameter
=
3
;
class
Foo
{
@forFactoryItself
factory
Foo
(
@forParameter
@anotherForParameter
p
)
=
Foo
.
named
;
Foo
.
named
(
p
);
}
main
()
{}