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

Unified Diff: tests/language/instanceof4_test.dart

Issue 23755002: Update language.status with issue numbers (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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
« no previous file with comments | « no previous file | tests/language/language_analyzer.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/instanceof4_test.dart
diff --git a/tests/language/instanceof4_test.dart b/tests/language/instanceof4_test.dart
index 1a3d1ca43131acf00360998fb3c5d2125cc3f567..86282dabb06505d53cee648cf29ce537db806557 100644
--- a/tests/language/instanceof4_test.dart
+++ b/tests/language/instanceof4_test.dart
@@ -22,23 +22,23 @@ testFooString() {
Expect.isTrue(!o.isNotT());
Expect.isTrue(o.isListT());
Expect.isTrue(!o.isNotListT());
- Expect.isTrue(!o.isAlsoListT());
- Expect.isTrue(o.isNeitherListT());
+ Expect.isTrue(!o.isAlsoListT()); /// 01: ok
+ Expect.isTrue(o.isNeitherListT()); /// 01: ok
for (var i = 0; i < 20; i++) {
// Make sure methods are optimized.
o.isT();
o.isNotT();
o.isListT();
o.isNotListT();
- o.isAlsoListT();
- o.isNeitherListT();
+ o.isAlsoListT(); /// 01: ok
+ o.isNeitherListT(); /// 01: ok
}
- Expect.isTrue(o.isT());
- Expect.isTrue(!o.isNotT());
- Expect.isTrue(o.isListT());
- Expect.isTrue(!o.isNotListT());
- Expect.isTrue(!o.isAlsoListT());
- Expect.isTrue(o.isNeitherListT());
+ Expect.isTrue(o.isT(), "1");
+ Expect.isTrue(!o.isNotT(), "2");
+ Expect.isTrue(o.isListT(), "3");
+ Expect.isTrue(!o.isNotListT(), "4");
+ Expect.isTrue(!o.isAlsoListT(), "5"); /// 01: ok
+ Expect.isTrue(o.isNeitherListT(), "6"); /// 01: ok
}
testFooInt() {
« no previous file with comments | « no previous file | tests/language/language_analyzer.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698