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

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 4058f9bf9b960a5387bf4d7a3683cf8935a22223..bae2f85a9610a1af78cd1e8b18c8ff843c62af8a 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