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

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

Issue 10876008: Remove most superfluous getter arguments from dart2js. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 4 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: dart/lib/compiler/implementation/js_backend/backend.dart
diff --git a/dart/lib/compiler/implementation/js_backend/backend.dart b/dart/lib/compiler/implementation/js_backend/backend.dart
index 05066d758cb4a344f09142cf785c7dcc3adb5d6f..842ce5942f3bc96fa6afd911f146b5376c1b2bd6 100644
--- a/dart/lib/compiler/implementation/js_backend/backend.dart
+++ b/dart/lib/compiler/implementation/js_backend/backend.dart
@@ -62,7 +62,7 @@ class InvocationInfo {
compiledFunctions.add(function);
void clearTypeInformation() { providedTypes = null; }
- bool get hasTypeInformation() => providedTypes != null;
+ bool get hasTypeInformation => providedTypes != null;
}
@@ -118,7 +118,7 @@ class JavaScriptBackend extends Backend {
final List<Element> invalidateAfterCodegen;
- List<CompilerTask> get tasks() {
+ List<CompilerTask> get tasks {
return <CompilerTask>[builder, optimizer, generator, emitter];
}
« no previous file with comments | « dart/lib/compiler/implementation/js/printer.dart ('k') | dart/lib/compiler/implementation/js_backend/emitter.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698