| Index: sdk/lib/core/string_buffer.dart
|
| diff --git a/sdk/lib/core/string_buffer.dart b/sdk/lib/core/string_buffer.dart
|
| index cbfcd6eee2959466b2931248935a9180ea5cc2d5..07d3277066e8832c6077c805a8ed37aee8ebe77d 100644
|
| --- a/sdk/lib/core/string_buffer.dart
|
| +++ b/sdk/lib/core/string_buffer.dart
|
| @@ -11,13 +11,16 @@ part of dart.core;
|
| */
|
| class StringBuffer implements StringSink {
|
|
|
| - /// Creates the string buffer with an initial content.
|
| + /** Creates the string buffer with an initial content. */
|
| external StringBuffer([Object content = ""]);
|
|
|
| - /// Returns the length of the buffer.
|
| + /**
|
| + * Returns the length of the content that has been accumulated so far.
|
| + * This is a constant-time operation.
|
| + */
|
| external int get length;
|
|
|
| - /// Returns whether the buffer is empty.
|
| + /** Returns whether the buffer is empty. This is a constant-time operation. */
|
| bool get isEmpty => length == 0;
|
|
|
| /**
|
|
|