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

Unified Diff: lib/compiler/implementation/dart_backend/backend.dart

Issue 10696194: Introduce CodeBuffer as StringBuffer replacement in compiler. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: . Created 8 years, 5 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: lib/compiler/implementation/dart_backend/backend.dart
diff --git a/lib/compiler/implementation/dart_backend/backend.dart b/lib/compiler/implementation/dart_backend/backend.dart
index 0ab44e249c854791b011097bc5683bc6d635975e..73d182006c6d94841c918d5e459d257095e9e06f 100644
--- a/lib/compiler/implementation/dart_backend/backend.dart
+++ b/lib/compiler/implementation/dart_backend/backend.dart
@@ -28,7 +28,7 @@ class DartBackend extends Backend {
// TODO(antonm): Implement this method, if needed.
}
- CodeBlock codegen(WorkItem work) { return new CodeBlock(null, null); }
+ CodeBuffer codegen(WorkItem work) { return new CodeBuffer(); }
void processNativeClasses(Enqueuer world,
Collection<LibraryElement> libraries) {

Powered by Google App Engine
This is Rietveld 408576698