Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(567)

Unified Diff: pkg/front_end/testcases/redirecting_factory.dart.outline.expect

Issue 2996063002: Implement type arguments in redirecting factories.
Patch Set: Address Johnni's comments. Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: pkg/front_end/testcases/redirecting_factory.dart.outline.expect
diff --git a/pkg/front_end/testcases/redirecting_factory.dart.outline.expect b/pkg/front_end/testcases/redirecting_factory.dart.outline.expect
index 3f266d376fec0b90bc14875367c25df1c04359e1..f941d8baa1a50810ee0ae4188ef878f00742125d 100644
--- a/pkg/front_end/testcases/redirecting_factory.dart.outline.expect
+++ b/pkg/front_end/testcases/redirecting_factory.dart.outline.expect
@@ -6,12 +6,12 @@ abstract class FooBase<Tf extends core::Object> extends core::Object {
static field dynamic _redirecting# = <dynamic>[self::FooBase::•];
abstract get x() → core::int;
static factory •<Tf extends core::Object>(core::int x) → self::FooBase<self::FooBase::•::Tf>
- let dynamic #redirecting_factory = self::Foo::• in invalid-expression;
+ let self::Foo<self::FooBase::•::Tf> #redirecting_factory = self::Foo::• in invalid-expression;
}
abstract class Foo<T extends core::Object> extends core::Object implements self::FooBase<dynamic> {
static field dynamic _redirecting# = <dynamic>[self::Foo::•];
static factory •<T extends core::Object>(core::int x) → self::Foo<self::Foo::•::T>
- let dynamic #redirecting_factory = self::Bar::• in invalid-expression;
+ let self::Bar<core::String, self::Foo::•::T> #redirecting_factory = self::Bar::• in invalid-expression;
}
class Bar<Sb extends core::Object, Tb extends core::Object> extends core::Object implements self::Foo<self::Bar::Tb> {
field core::int x;
@@ -27,12 +27,12 @@ class Builder<X extends core::Object> extends core::Object {
class SimpleCase<A extends core::Object, B extends core::Object> extends core::Object {
static field dynamic _redirecting# = <dynamic>[self::SimpleCase::•];
static factory •<A extends core::Object, B extends core::Object>() → self::SimpleCase<self::SimpleCase::•::A, self::SimpleCase::•::B>
- let dynamic #redirecting_factory = self::SimpleCaseImpl::• in invalid-expression;
+ let self::SimpleCaseImpl<self::SimpleCase::•::A, self::SimpleCase::•::B> #redirecting_factory = self::SimpleCaseImpl::• in invalid-expression;
}
class SimpleCaseImpl<Ai extends core::Object, Bi extends core::Object> extends core::Object implements self::SimpleCase<self::SimpleCaseImpl::Ai, self::SimpleCaseImpl::Bi> {
static field dynamic _redirecting# = <dynamic>[self::SimpleCaseImpl::•];
static factory •<Ai extends core::Object, Bi extends core::Object>() → self::SimpleCaseImpl<self::SimpleCaseImpl::•::Ai, self::SimpleCaseImpl::•::Bi>
- let dynamic #redirecting_factory = self::SimpleCaseImpl2::• in invalid-expression;
+ let self::SimpleCaseImpl2<self::SimpleCaseImpl::•::Ai, self::SimpleCaseImpl::•::Bi> #redirecting_factory = self::SimpleCaseImpl2::• in invalid-expression;
}
class SimpleCaseImpl2<Ai2 extends core::Object, Bi2 extends core::Object> extends core::Object implements self::SimpleCaseImpl<self::SimpleCaseImpl2::Ai2, self::SimpleCaseImpl2::Bi2> {
default constructor •() → void

Powered by Google App Engine
This is Rietveld 408576698