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

Unified Diff: test/kernel/regression/static.dart.txt

Issue 2070143002: Track void context. (Closed) Base URL: git@github.com:dart-lang/rasta.git@visit_for_value
Patch Set: Merged with ad52721ca12cbb5c47e968ae2070408e1fef7017 Created 4 years, 6 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
« no previous file with comments | « test/kernel/regression/for_loop.dart.txt ('k') | test/kernel/regression/super.dart.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/kernel/regression/static.dart.txt
diff --git a/test/kernel/regression/static.dart.txt b/test/kernel/regression/static.dart.txt
index c557479c65cae663c29eed497305d5e35a7f4f1e..63e61fb760b9a1377d671cfc61d2b0ace23e34b3 100644
--- a/test/kernel/regression/static.dart.txt
+++ b/test/kernel/regression/static.dart.txt
@@ -27,22 +27,22 @@ static method main() → dynamic {
self::use(self::Foo::staticGetter);
invalid-expression;
self::use(invalid-expression);
- let final #t1 = self::Foo::staticConstant in let final #t2 = let final #t3 = #t1.+(1) in invalid-expression in #t1;
- self::use(let final #t4 = self::Foo::staticConstant in let final #t5 = let final #t6 = #t4.+(1) in invalid-expression in #t4);
- let final #t7 = self::Foo::staticField in let final #t8 = self::Foo::staticField = #t7.+(1) in #t7;
- self::use(let final #t9 = self::Foo::staticField in let final #t10 = self::Foo::staticField = #t9.+(1) in #t9);
- let final #t11 = self::Foo::staticFunction in let final #t12 = let final #t13 = #t11.+(1) in invalid-expression in #t11;
- self::use(let final #t14 = self::Foo::staticFunction in let final #t15 = let final #t16 = #t14.+(1) in invalid-expression in #t14);
+ let final #t1 = self::Foo::staticConstant.+(1) in invalid-expression;
+ self::use(let final #t2 = self::Foo::staticConstant in let final #t3 = let final #t4 = #t2.+(1) in invalid-expression in #t2);
+ self::Foo::staticField = self::Foo::staticField.+(1);
+ self::use(let final #t5 = self::Foo::staticField in let final #t6 = self::Foo::staticField = #t5.+(1) in #t5);
+ let final #t7 = self::Foo::staticFunction.+(1) in invalid-expression;
+ self::use(let final #t8 = self::Foo::staticFunction in let final #t9 = let final #t10 = #t8.+(1) in invalid-expression in #t8);
invalid-expression;
self::use(invalid-expression);
invalid-expression;
self::use(invalid-expression);
- let final #t17 = self::Foo::staticConstant.+(1) in invalid-expression;
- self::use(let final #t18 = self::Foo::staticConstant.+(1) in invalid-expression);
+ let final #t11 = self::Foo::staticConstant.+(1) in invalid-expression;
+ self::use(let final #t12 = self::Foo::staticConstant.+(1) in invalid-expression);
self::Foo::staticField = self::Foo::staticField.+(1);
self::use(self::Foo::staticField = self::Foo::staticField.+(1));
- let final #t19 = self::Foo::staticFunction.+(1) in invalid-expression;
- self::use(let final #t20 = self::Foo::staticFunction.+(1) in invalid-expression);
+ let final #t13 = self::Foo::staticFunction.+(1) in invalid-expression;
+ self::use(let final #t14 = self::Foo::staticFunction.+(1) in invalid-expression);
invalid-expression;
self::use(invalid-expression);
invalid-expression;
@@ -57,22 +57,22 @@ static method main() → dynamic {
self::use(self::Foo::staticGetter.call());
invalid-expression.call();
self::use(invalid-expression.call());
- let final #t21 = 87 in invalid-expression;
- self::use(let final #t22 = 87 in invalid-expression);
+ let final #t15 = 87 in invalid-expression;
+ self::use(let final #t16 = 87 in invalid-expression);
self::Foo::staticField = 87;
self::use(self::Foo::staticField = 87);
- let final #t23 = 87 in invalid-expression;
- self::use(let final #t24 = 87 in invalid-expression);
- let final #t25 = 87 in invalid-expression;
- self::use(let final #t26 = 87 in invalid-expression);
+ let final #t17 = 87 in invalid-expression;
+ self::use(let final #t18 = 87 in invalid-expression);
+ let final #t19 = 87 in invalid-expression;
+ self::use(let final #t20 = 87 in invalid-expression);
self::Foo::staticSetter = 87;
self::use(self::Foo::staticSetter = 87);
- self::Foo::staticConstant.==(null) ? null : let final #t27 = 87 in invalid-expression;
- self::use(self::Foo::staticConstant.==(null) ? null : let final #t28 = 87 in invalid-expression);
+ self::Foo::staticConstant.==(null) ? null : let final #t21 = 87 in invalid-expression;
+ self::use(self::Foo::staticConstant.==(null) ? null : let final #t22 = 87 in invalid-expression);
self::Foo::staticField.==(null) ? null : self::Foo::staticField = 87;
self::use(self::Foo::staticField.==(null) ? null : self::Foo::staticField = 87);
- self::Foo::staticFunction.==(null) ? null : let final #t29 = 87 in invalid-expression;
- self::use(self::Foo::staticFunction.==(null) ? null : let final #t30 = 87 in invalid-expression);
+ self::Foo::staticFunction.==(null) ? null : let final #t23 = 87 in invalid-expression;
+ self::use(self::Foo::staticFunction.==(null) ? null : let final #t24 = 87 in invalid-expression);
invalid-expression;
self::use(invalid-expression);
invalid-expression;
« no previous file with comments | « test/kernel/regression/for_loop.dart.txt ('k') | test/kernel/regression/super.dart.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698