| 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);
|
| + }
|
| }
|
|
|