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

Side by Side Diff: sdk/lib/core/string_buffer.dart

Issue 2754013002: Format all dart: library files (Closed)
Patch Set: Format all dart: library files 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 unified diff | Download patch
« no previous file with comments | « sdk/lib/core/string.dart ('k') | sdk/lib/core/string_sink.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 part of dart.core; 5 part of dart.core;
6 6
7 /** 7 /**
8 * A class for concatenating strings efficiently. 8 * A class for concatenating strings efficiently.
9 * 9 *
10 * Allows for the incremental building of a string using write*() methods. 10 * Allows for the incremental building of a string using write*() methods.
11 * The strings are concatenated to a single string only when [toString] is 11 * The strings are concatenated to a single string only when [toString] is
12 * called. 12 * called.
13 */ 13 */
14 class StringBuffer implements StringSink { 14 class StringBuffer implements StringSink {
15
16 /** Creates the string buffer with an initial content. */ 15 /** Creates the string buffer with an initial content. */
17 external StringBuffer([Object content = ""]); 16 external StringBuffer([Object content = ""]);
18 17
19 /** 18 /**
20 * Returns the length of the content that has been accumulated so far. 19 * Returns the length of the content that has been accumulated so far.
21 * This is a constant-time operation. 20 * This is a constant-time operation.
22 */ 21 */
23 external int get length; 22 external int get length;
24 23
25 /** Returns whether the buffer is empty. This is a constant-time operation. */ 24 /** Returns whether the buffer is empty. This is a constant-time operation. */
(...skipping 16 matching lines...) Expand all
42 external void writeln([Object obj = ""]); 41 external void writeln([Object obj = ""]);
43 42
44 /** 43 /**
45 * Clears the string buffer. 44 * Clears the string buffer.
46 */ 45 */
47 external void clear(); 46 external void clear();
48 47
49 /// Returns the contents of buffer as a concatenated string. 48 /// Returns the contents of buffer as a concatenated string.
50 external String toString(); 49 external String toString();
51 } 50 }
OLDNEW
« no previous file with comments | « sdk/lib/core/string.dart ('k') | sdk/lib/core/string_sink.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698