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

Unified Diff: tests/lib_strong/mirrors/redirecting_factory_test.dart

Issue 2765893003: Fix warnings_checker.dart handling of multitests (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/lib_strong/mirrors/redirecting_factory_test.dart
diff --git a/tests/lib_strong/mirrors/redirecting_factory_test.dart b/tests/lib_strong/mirrors/redirecting_factory_test.dart
index b6112858f42760e02fbae1782b16aab873ed8ed5..1bf784c417cc97c77a91e65ed79cbbe2350c3597 100644
--- a/tests/lib_strong/mirrors/redirecting_factory_test.dart
+++ b/tests/lib_strong/mirrors/redirecting_factory_test.dart
@@ -43,7 +43,7 @@ class Class<T1, T2> {
factory Class.redirectingFactoryStringTypeParameters(a, b) =
Class
- <String> // /// 02: static type warning
+ <String> // //# 02: static type warning
.factoryNoOptional;
factory Class.redirectingFactoryTypeParameters(a, b) =
@@ -85,7 +85,7 @@ main() {
Expect.isTrue(instanceMirror.reflectee is Class<int, String>);
bool isDart2js = false;
- isDart2js = true; /// 01: ok
+ isDart2js = true; //# 01: ok
if (isDart2js) return;
instanceMirror = classMirror.newInstance(

Powered by Google App Engine
This is Rietveld 408576698