Chromium Code Reviews| 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: |