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

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

Issue 2420053003: Update kernel module. (Closed)
Patch Set: Created 4 years, 2 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/super_operator.dart.txt ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/kernel/regression/unresolved_for_in.dart.txt
diff --git a/test/kernel/regression/unresolved_for_in.dart.txt b/test/kernel/regression/unresolved_for_in.dart.txt
index 9ad244d44436827a9a4fb5481adbb6056ad3b799..1d5ea673cf6f86e8be836d3456801c2bfc35b621 100644
--- a/test/kernel/regression/unresolved_for_in.dart.txt
+++ b/test/kernel/regression/unresolved_for_in.dart.txt
@@ -6,23 +6,23 @@ class Fisk extends core::Object {
constructor •() → self::Fisk
: super core::Object::•();
method it1(dynamic x) → dynamic {
- for(final dynamic #t1 in x) {
+ for (final dynamic #t1 in x) {
this.key = #t1;
core::print(this.key);
}
- for(final dynamic #t2 in x) {
+ for (final dynamic #t2 in x) {
let final dynamic #t3 = #t2 in invalid-expression;
core::print(self::Fisk);
}
- for(final dynamic #t4 in x) {
+ for (final dynamic #t4 in x) {
let final dynamic #t5 = #t4 in invalid-expression;
core::print(invalid-expression);
}
- for(final dynamic #t6 in x) {
+ for (final dynamic #t6 in x) {
let final dynamic #t7 = #t6 in invalid-expression;
core::print(() → void);
}
- for(final dynamic #t8 in x) {
+ for (final dynamic #t8 in x) {
let final dynamic #t9 = #t8 in invalid-expression;
core::print(this.key);
}
@@ -30,23 +30,23 @@ class Fisk extends core::Object {
}
static method main(dynamic arguments) → dynamic {
new self::Fisk::•();
- for(final dynamic #t10 in arguments) {
+ for (final dynamic #t10 in arguments) {
let final dynamic #t11 = #t10 in invalid-expression;
core::print(throw core::_genericNoSuchMethod(null, #key, <dynamic>[], <dynamic, dynamic>{}, null));
}
- for(final dynamic #t12 in arguments) {
+ for (final dynamic #t12 in arguments) {
let final dynamic #t13 = #t12 in invalid-expression;
core::print(self::Fisk);
}
- for(final dynamic #t14 in arguments) {
+ for (final dynamic #t14 in arguments) {
let final dynamic #t15 = #t14 in invalid-expression;
core::print(invalid-expression);
}
- for(final dynamic #t16 in arguments) {
+ for (final dynamic #t16 in arguments) {
let final dynamic #t17 = #t16 in invalid-expression;
core::print(() → void);
}
- for(final dynamic #t18 in arguments) {
+ for (final dynamic #t18 in arguments) {
let final dynamic #t19 = #t18 in invalid-expression;
core::print(throw core::_genericNoSuchMethod(null, #key, <dynamic>[], <dynamic, dynamic>{}, null));
}
« no previous file with comments | « test/kernel/regression/super_operator.dart.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698