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

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

Issue 10453026: Fix a warning: void method return type. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 7 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/compiler/implementation/compiler.dart
diff --git a/lib/compiler/implementation/compiler.dart b/lib/compiler/implementation/compiler.dart
index e50803e70e5a56f965761966b1a35fd8beb3f6f4..f1198b23e63ee5ff8b13fb8b12c31bdfd8a09367 100644
--- a/lib/compiler/implementation/compiler.dart
+++ b/lib/compiler/implementation/compiler.dart
@@ -61,7 +61,9 @@ class JavaScriptBackend extends Backend {
native.processNativeClasses(world, emitter, libraries);
}
- void assembleProgram() => emitter.assembleProgram();
+ void assembleProgram() {
+ emitter.assembleProgram();
+ }
}
class DartBackend extends Backend {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698