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

Unified Diff: tests/lib/mirrors/constructor_kinds_test.dart

Issue 2765693002: Update all tests (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/mirrors/constructor_kinds_test.dart
diff --git a/tests/lib/mirrors/constructor_kinds_test.dart b/tests/lib/mirrors/constructor_kinds_test.dart
index e083d0ecd4fac337deff5a07d1c60bdef1b50a93..5680b24a751abd948651a688ee674d787293b19a 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

Powered by Google App Engine
This is Rietveld 408576698