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

Unified Diff: tests/language/issue15606_test.dart

Issue 2765693002: Update all tests (Closed)
Patch Set: Created 3 years, 9 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: tests/language/issue15606_test.dart
diff --git a/tests/language/issue15606_test.dart b/tests/language/issue15606_test.dart
index d50b576b54a76d5fa0f49294f14792e757ce836e..ea963d7664cbb08213df56349a8eb2d584bb77d4 100644
--- a/tests/language/issue15606_test.dart
+++ b/tests/language/issue15606_test.dart
@@ -9,13 +9,13 @@ var a = [new Object(), 42];
main() {
while (false) { // Comply to inlining heuristics.
// Use an unresolved prefix.
- var foo = Unresolved.foo( /// 01: static type warning
+ var foo = Unresolved.foo( //# 01: static type warning
// Make dart2js generate a call to setRuntimeTypeInfo.
- new Foo<int>(), /// 01: continued
+ new Foo<int>(), //# 01: continued
// Use a one-shot interceptor.
- a[0].toString()); /// 01: continued
+ a[0].toString()); //# 01: continued
// Do an is test on `Foo` to require setRuntimeTypeInfo.
- print(foo is Foo<int>); /// 01: continued
+ print(foo is Foo<int>); //# 01: continued
}
}

Powered by Google App Engine
This is Rietveld 408576698