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

Unified Diff: tests/lib_strong/mirrors/invoke_call_through_getter_previously_accessed_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_strong/mirrors/invoke_call_through_getter_previously_accessed_test.dart
diff --git a/tests/lib_strong/mirrors/invoke_call_through_getter_previously_accessed_test.dart b/tests/lib_strong/mirrors/invoke_call_through_getter_previously_accessed_test.dart
index 0b78ec2d53a51336d15cb43e8bc61c3caaf8978a..2e46ddeb811d808cdbd511710a89fdf91baaddc7 100644
--- a/tests/lib_strong/mirrors/invoke_call_through_getter_previously_accessed_test.dart
+++ b/tests/lib_strong/mirrors/invoke_call_through_getter_previously_accessed_test.dart
@@ -51,8 +51,8 @@ testInstanceReflective() {
im.invoke(#closure, [9, 10]).reflectee);
Expect.equals('3 C 11 12 13 null',
im.invoke(#closureOpt, [11, 12, 13]).reflectee);
- Expect.equals('4 C 14 15 null 16', /// named: ok
- im.invoke(#closureNamed, [14, 15], {#w: 16}).reflectee); /// named: continued
+ Expect.equals('4 C 14 15 null 16', //# named: ok
+ im.invoke(#closureNamed, [14, 15], {#w: 16}).reflectee); //# named: continued
Expect.equals('DNU',
im.invoke(#doesNotExist, [17, 18]).reflectee);
Expect.throws(() => im.invoke(#closure, ['wrong arity']),
@@ -90,8 +90,8 @@ testClassReflective() {
cm.invoke(#closure, [9, 10]).reflectee);
Expect.equals('3 11 12 13 null',
cm.invoke(#closureOpt, [11, 12, 13]).reflectee);
- Expect.equals('4 14 15 null 16', /// named: continued
- cm.invoke(#closureNamed, [14, 15], {#w: 16}).reflectee); /// named: continued
+ Expect.equals('4 14 15 null 16', //# named: continued
+ cm.invoke(#closureNamed, [14, 15], {#w: 16}).reflectee); //# named: continued
Expect.throws(() => cm.invoke(#closure, ['wrong arity']),
(e) => e is NoSuchMethodError);
}
@@ -123,8 +123,8 @@ testLibraryReflective() {
lm.invoke(#closure, [9, 10]).reflectee);
Expect.equals('3 11 12 13 null',
lm.invoke(#closureOpt, [11, 12, 13]).reflectee);
- Expect.equals('4 14 15 null 16', /// named: continued
- lm.invoke(#closureNamed, [14, 15], {#w: 16}).reflectee); /// named: continued
+ Expect.equals('4 14 15 null 16', //# named: continued
+ lm.invoke(#closureNamed, [14, 15], {#w: 16}).reflectee); //# named: continued
Expect.throws(() => lm.invoke(#closure, ['wrong arity']),
(e) => e is NoSuchMethodError);
}

Powered by Google App Engine
This is Rietveld 408576698