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

Unified Diff: pkg/front_end/test/fasta/rasta/issue_000070.dart.outline.expect

Issue 2662703002: Update rasta outline expectations. (Closed)
Patch Set: Rebased on 0401b897958de33f8481b9cb323eab53106a3ce9. Created 3 years, 11 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/test/fasta/rasta/issue_000070.dart.outline.expect
diff --git a/pkg/front_end/test/fasta/rasta/issue_000070.dart.outline.expect b/pkg/front_end/test/fasta/rasta/issue_000070.dart.outline.expect
index 4f721a8f1f6292d5e69cb75ebe57608f42ef1efe..3cc16d22ef036af5cd32e655896da5276bc78bec 100644
--- a/pkg/front_end/test/fasta/rasta/issue_000070.dart.outline.expect
+++ b/pkg/front_end/test/fasta/rasta/issue_000070.dart.outline.expect
@@ -1,41 +1,29 @@
library;
import self as self;
import "dart:core" as core;
-import "package:expect/expect.dart" as exp;
class A<N extends core::Object, S extends core::Object, U extends core::Object> extends core::Object {
final field core::List<self::A::U> field;
- constructor •(self::A::N n, self::A::S s) → dynamic
- : self::A::field = core::List::•<self::A::U>(), super core::Object::•() {
- exp::Expect::isTrue(n is self::A::N);
- exp::Expect::isTrue(s is self::A::S);
- }
- constructor empty() → dynamic
- : self::A::field = null, super core::Object::•() {}
- const constructor c(self::A::U u, self::A::S s) → dynamic
- : self::A::field = const <dynamic>[null], super core::Object::•()
- ;
- static factory f<N extends core::Object, S extends core::Object, U extends core::Object>(self::A::f::S s) → self::A<self::A::f::N, self::A::f::S, self::A::f::U> {
- exp::Expect::isTrue(s is self::A::f::S);
- return new self::A::empty<dynamic, dynamic, dynamic>();
- }
- get getter() → core::List<self::A::U> {
- return this.field;
- }
- set setter(self::A::S s) → void {}
+ constructor •(self::A::N n, self::A::S s) → void
+ ;
+ constructor empty() → void
+ ;
+ const constructor c(self::A::U u, self::A::S s) → void
+ ;
+ get getter() → core::List<self::A::U>
+ ;
+ set setter(self::A::S s) → void
+ ;
+ static factory f<N extends core::Object, S extends core::Object, U extends core::Object>(self::A::f::S s) → self::A<self::A::f::N, self::A::f::S, self::A::f::U>
+ ;
}
abstract class J<Aa extends core::Object, B extends core::Object> extends core::Object {
- constructor •() → self::J<self::J::Aa, self::J::B>
- : super core::Object::•();
+ constructor •() → void
+ ;
}
abstract class I<H extends core::Object, C extends core::Object, K extends core::Object> extends self::J<self::I::C, self::I::K> {
- constructor •() → self::I<self::I::H, self::I::C, self::I::K>
- : super self::J::•();
-}
-static method main() → dynamic {
- new self::A::•<core::num, core::double, core::List<dynamic>>(1, 2.0);
- self::A<dynamic, dynamic, dynamic> a = self::A::f<core::int, core::int, core::int>(1);
- const self::A::c<core::int, core::int, core::List<dynamic>>(const <dynamic>[], 1);
- dynamic z = a.getter;
- a.setter = 1;
+ constructor •() → void
+ ;
}
+static method main() → dynamic
+ ;

Powered by Google App Engine
This is Rietveld 408576698