Chromium Code Reviews| 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 b036a5f4d92b7c6829faee917910054ff6936b84..2304fdedd9fe37b3c88170e1b2c72c662d238819 100644 |
| --- a/lib/compiler/implementation/dart_backend/backend.dart |
| +++ b/lib/compiler/implementation/dart_backend/backend.dart |
| @@ -22,7 +22,7 @@ class DartBackend extends Backend { |
| // TODO(antonm): Implement this method, if needed. |
| } |
| - CodeBuffer codegen(WorkItem work) { return new CodeBuffer(); } |
| + void codegen(WorkItem work) => null; |
|
ahe
2012/08/14 07:57:56
Please don't use => for void methods (outside test
Søren Gjesse
2012/08/14 08:26:30
Changed to empty body.
|
| void processNativeClasses(Enqueuer world, |
| Collection<LibraryElement> libraries) { |