| 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];
|
| }
|
|
|
|
|