| Index: pkg/front_end/test/fasta/rasta/generic_factory.dart.outline.expect
|
| diff --git a/pkg/front_end/test/fasta/rasta/generic_factory.dart.outline.expect b/pkg/front_end/test/fasta/rasta/generic_factory.dart.outline.expect
|
| index 52b736e0757f859e34a78c63c1f4ae2039b527d5..346aa5ac20faa4e3484221244dfc2c0137ee5db7 100644
|
| --- a/pkg/front_end/test/fasta/rasta/generic_factory.dart.outline.expect
|
| +++ b/pkg/front_end/test/fasta/rasta/generic_factory.dart.outline.expect
|
| @@ -3,31 +3,29 @@ import self as self;
|
| import "dart:core" as core;
|
|
|
| class C1 extends core::Object {
|
| - constructor •() → self::C1
|
| - : super core::Object::•();
|
| + constructor •() → void
|
| + ;
|
| }
|
| class C2 extends core::Object {
|
| - constructor •() → self::C2
|
| - : super core::Object::•();
|
| + constructor •() → void
|
| + ;
|
| }
|
| class C3 extends core::Object {
|
| - constructor •() → self::C3
|
| - : super core::Object::•();
|
| + constructor •() → void
|
| + ;
|
| }
|
| class A<T extends core::Object> extends core::Object {
|
| - constructor internal() → dynamic
|
| - : super core::Object::•()
|
| + constructor internal() → void
|
| ;
|
| static factory a<T extends core::Object>() → self::A<self::A::a::T>
|
| invalid-statement;
|
| static factory b<T extends core::Object>() → self::A<self::A::b::T>
|
| invalid-statement;
|
| static factory c<T extends core::Object>() → self::A<self::A::c::T>
|
| - invalid-statement;
|
| + throw "Missing constructor: Missing";
|
| }
|
| class B<S extends core::Object> extends self::A<self::B::S> {
|
| - constructor internal() → dynamic
|
| - : super self::A::internal()
|
| + constructor internal() → void
|
| ;
|
| static factory a<S extends core::Object>() → self::B<self::B::a::S>
|
| invalid-statement;
|
| @@ -35,14 +33,8 @@ class B<S extends core::Object> extends self::A<self::B::S> {
|
| invalid-statement;
|
| }
|
| class C<U extends core::Object> extends self::B<self::C::U> {
|
| - constructor •() → dynamic
|
| - : super self::B::internal()
|
| + constructor •() → void
|
| ;
|
| }
|
| -static method main() → dynamic {
|
| - new self::C::•<self::C3>();
|
| - new self::C::•<self::C1>();
|
| - new self::C::•<self::C3>();
|
| - new self::C::•<self::C2>();
|
| - invalid-expression.call();
|
| -}
|
| +static method main() → dynamic
|
| + ;
|
|
|