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

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

Issue 90713003: Dart2js option to dump info about compilation (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 1 month 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: sdk/lib/_internal/compiler/implementation/dart_backend/backend.dart
diff --git a/sdk/lib/_internal/compiler/implementation/dart_backend/backend.dart b/sdk/lib/_internal/compiler/implementation/dart_backend/backend.dart
index 836d99914405130d3f4ed6969d482983c22f1bcd..631a8293f56f3693c7f7a3bcc3bc715c2a5ca49e 100644
--- a/sdk/lib/_internal/compiler/implementation/dart_backend/backend.dart
+++ b/sdk/lib/_internal/compiler/implementation/dart_backend/backend.dart
@@ -145,6 +145,11 @@ class DartBackend extends Backend {
Map<Element, TreeElements> get resolvedElements =>
compiler.enqueuer.resolution.resolvedElements;
+ CodeBuffer emitCodeFor(Element e) {
+ return null; // TODO (sigurdm) Emit the code if available
ahe 2013/11/27 19:28:53 Why isn't this the default implementation?
sigurdm 2013/11/29 10:39:37 Good question
+ }
+
ahe 2013/11/27 19:28:53 Extra line.
sigurdm 2013/11/29 10:39:37 Done.
+
/**
* Tells whether it is safe to remove type declarations from variables,
* functions parameters. It becomes not safe if:

Powered by Google App Engine
This is Rietveld 408576698