Index: tests/lib/mirrors/constructor_kinds_test.dart |
diff --git a/tests/lib/mirrors/constructor_kinds_test.dart b/tests/lib/mirrors/constructor_kinds_test.dart |
index c7f45f8a793c092ffe9fd39bb6b6e8adf9a0dac2..488c86ce2329e71e319882caa5e6145442ba9ad6 100644 |
--- a/tests/lib/mirrors/constructor_kinds_test.dart |
+++ b/tests/lib/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 |