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

Unified Diff: tests/lib_strong/mirrors/invoke_call_through_implicit_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_implicit_getter_previously_accessed_test.dart
diff --git a/tests/lib_strong/mirrors/invoke_call_through_implicit_getter_previously_accessed_test.dart b/tests/lib_strong/mirrors/invoke_call_through_implicit_getter_previously_accessed_test.dart
index e30b0c33abfbeeeb70b0915607535d9431876351..9adac4c0ccaabc9739b54430d291864a51e357a7 100644
--- a/tests/lib_strong/mirrors/invoke_call_through_implicit_getter_previously_accessed_test.dart
+++ b/tests/lib_strong/mirrors/invoke_call_through_implicit_getter_previously_accessed_test.dart
@@ -57,8 +57,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']),
@@ -96,8 +96,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);
}
@@ -129,8 +129,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