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

Unified Diff: tests/language/call_through_getter_test.dart

Issue 12473003: Remove deprecated StringBuffer.add, addAll and addCharCode. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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/language/call_through_getter_test.dart
diff --git a/tests/language/call_through_getter_test.dart b/tests/language/call_through_getter_test.dart
index 11a11d74a459948c16b2e52a5e4d9a8ea2910df3..fc24d4da0ed903118bcf1fbe7bdb8c9194426d34 100644
--- a/tests/language/call_through_getter_test.dart
+++ b/tests/language/call_through_getter_test.dart
@@ -155,7 +155,7 @@ class B {
get y { _mark('y'); return 1; }
get z { _mark('z'); return 2; }
- _mark(m) { _order.add(m); return _order.toString(); }
+ _mark(m) { _order.write(m); return _order.toString(); }
StringBuffer _order;
}

Powered by Google App Engine
This is Rietveld 408576698