| 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 2af49bce65e0b3ac2e63d8d48acc883d3172dea5..6f04207759e80dd5e9045a8e08c617827dc0dee8 100644
|
| --- a/lib/compiler/implementation/dart_backend/backend.dart
|
| +++ b/lib/compiler/implementation/dart_backend/backend.dart
|
| @@ -281,7 +281,8 @@ class DartBackend extends Backend {
|
| resolvedElements.forEach((element, treeElements) {
|
| if (!shouldOutput(element)) return;
|
|
|
| - var elementAst = new ElementAst.rewrite(compiler, parse(element), treeElements);
|
| + var elementAst =
|
| + new ElementAst.rewrite(compiler, parse(element), treeElements);
|
| if (element.isField()) {
|
| final list = (element as VariableElement).variables;
|
| elementAst = elementAsts.putIfAbsent(
|
|
|