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

Unified Diff: test/dart_codegen/expect/core/string_buffer.dart

Issue 1148283010: Remove dart backend (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 7 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/dart_codegen/expect/core/string.dart ('k') | test/dart_codegen/expect/core/string_sink.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/dart_codegen/expect/core/string_buffer.dart
diff --git a/test/dart_codegen/expect/core/string_buffer.dart b/test/dart_codegen/expect/core/string_buffer.dart
deleted file mode 100644
index b1f86694146ec1eb4a22ba95c41e729af9cad79e..0000000000000000000000000000000000000000
--- a/test/dart_codegen/expect/core/string_buffer.dart
+++ /dev/null
@@ -1,29 +0,0 @@
-part of dart.core;
- class StringBuffer implements StringSink {external StringBuffer([Object content = ""]);
- external int get length;
- bool get isEmpty => length == 0;
- bool get isNotEmpty => !isEmpty;
- external void write(Object obj);
- external void writeCharCode(int charCode);
- void writeAll(Iterable objects, [String separator = ""]) {
- Iterator iterator = objects.iterator;
- if (!iterator.moveNext()) return; if (separator.isEmpty) {
- do {
- write(iterator.current);
- }
- while (iterator.moveNext());}
- else {
- write(iterator.current);
- while (iterator.moveNext()) {
- write(separator);
- write(iterator.current);
- }
- }
- }
- void writeln([Object obj = ""]) {
- write(obj);
- write("\n");
- }
- external void clear();
- external String toString();
-}
« no previous file with comments | « test/dart_codegen/expect/core/string.dart ('k') | test/dart_codegen/expect/core/string_sink.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698