Index: tests/lib_strong/mirrors/constructor_kinds_test.dart |
diff --git a/tests/lib_strong/mirrors/constructor_kinds_test.dart b/tests/lib_strong/mirrors/constructor_kinds_test.dart |
index e083d0ecd4fac337deff5a07d1c60bdef1b50a93..5680b24a751abd948651a688ee674d787293b19a 100644 |
--- a/tests/lib_strong/mirrors/constructor_kinds_test.dart |
+++ b/tests/lib_strong/mirrors/constructor_kinds_test.dart |
@@ -32,14 +32,14 @@ main() { |
// that constructor properties are correctly set even if the constructor |
// hasn't been fully compiled. On dart2js, we want to check that constructors |
// are retain even if there are no base-level calls. |
- new ClassWithDefaultConstructor(); /// 01: ok |
- new Class.generativeConstructor(); /// 01: ok |
- new Class.redirectingGenerativeConstructor(); /// 01: ok |
- new Class.factoryConstructor(); /// 01: ok |
- new Class.redirectingFactoryConstructor(); /// 01: ok |
- const Class.constGenerativeConstructor(); /// 01: ok |
- const Class.constRedirectingGenerativeConstructor(); /// 01: ok |
- const Class.constRedirectingFactoryConstructor(); /// 01: ok |
+ new ClassWithDefaultConstructor(); //# 01: ok |
+ new Class.generativeConstructor(); //# 01: ok |
+ new Class.redirectingGenerativeConstructor(); //# 01: ok |
+ new Class.factoryConstructor(); //# 01: ok |
+ new Class.redirectingFactoryConstructor(); //# 01: ok |
+ const Class.constGenerativeConstructor(); //# 01: ok |
+ const Class.constRedirectingGenerativeConstructor(); //# 01: ok |
+ const Class.constRedirectingFactoryConstructor(); //# 01: ok |
cm = reflectClass(ClassWithDefaultConstructor); |
mm = cm.declarations.values |