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

Unified Diff: test/generated_sdk/lib/core/string_buffer.dart

Issue 955513007: merge class extensions from patch files (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 10 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
« no previous file with comments | « test/generated_sdk/lib/core/string.dart ('k') | tool/patch_sdk.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/generated_sdk/lib/core/string_buffer.dart
diff --git a/test/generated_sdk/lib/core/string_buffer.dart b/test/generated_sdk/lib/core/string_buffer.dart
index 186952ae5edd1c55db174645c1ca94ab7a5a1f30..c48adf1805ab76e79c06a7b4952e0eff9278f6ea 100644
--- a/test/generated_sdk/lib/core/string_buffer.dart
+++ b/test/generated_sdk/lib/core/string_buffer.dart
@@ -71,4 +71,10 @@ class StringBuffer implements StringSink {
/// Returns the contents of buffer as a concatenated string.
String toString() => Primitives.flattenString(_contents);
+
+ String _contents;
+
+ void _writeString(str) {
+ _contents = Primitives.stringConcatUnchecked(_contents, str);
+ }
}
« no previous file with comments | « test/generated_sdk/lib/core/string.dart ('k') | tool/patch_sdk.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698