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

Unified Diff: dart/sdk/lib/_internal/compiler/implementation/lib/string_helper.dart

Issue 12296011: Version 0.3.7.4 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 7 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
Index: dart/sdk/lib/_internal/compiler/implementation/lib/string_helper.dart
===================================================================
--- dart/sdk/lib/_internal/compiler/implementation/lib/string_helper.dart (revision 18634)
+++ dart/sdk/lib/_internal/compiler/implementation/lib/string_helper.dart (working copy)
@@ -202,33 +202,3 @@
stringJoinUnchecked(array, separator) {
return JS('String', r'#.join(#)', array, separator);
}
-
-class JsStringBuffer implements StringBuffer {
- String _contents;
-
- JsStringBuffer(content)
- : _contents = (content is String) ? content : '$content';
-
- int get length => _contents.length;
-
- bool get isEmpty => length == 0;
-
- void add(Object obj) {
- _contents = JS('String', '# + #', _contents,
- (obj is String) ? obj : '$obj');
- }
-
- void addAll(Iterable objects) {
- for (Object obj in objects) add(obj);
- }
-
- void addCharCode(int charCode) {
- add(new String.fromCharCodes([charCode]));
- }
-
- void clear() {
- _contents = "";
- }
-
- String toString() => _contents;
-}
« no previous file with comments | « dart/sdk/lib/_internal/compiler/implementation/lib/js_helper.dart ('k') | dart/sdk/lib/async/future_impl.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698