| Index: tests/lib/mirrors/redirecting_factory_test.dart
|
| diff --git a/tests/lib/mirrors/redirecting_factory_test.dart b/tests/lib/mirrors/redirecting_factory_test.dart
|
| index b6112858f42760e02fbae1782b16aab873ed8ed5..1bf784c417cc97c77a91e65ed79cbbe2350c3597 100644
|
| --- a/tests/lib/mirrors/redirecting_factory_test.dart
|
| +++ b/tests/lib/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(
|
|
|