| Index: pkg/compiler/lib/src/resolution/scope.dart
|
| diff --git a/pkg/compiler/lib/src/resolution/scope.dart b/pkg/compiler/lib/src/resolution/scope.dart
|
| index 380b7643dd744323cd8b40995b73f6ffb530ed73..a0479680ee682b570a8dba0c6dc2f595b6dbf454 100644
|
| --- a/pkg/compiler/lib/src/resolution/scope.dart
|
| +++ b/pkg/compiler/lib/src/resolution/scope.dart
|
| @@ -110,8 +110,8 @@ abstract class MutableScope extends NestedScope {
|
| final Map<String, Element> elements;
|
|
|
| MutableScope(Scope parent)
|
| - : super(parent),
|
| - this.elements = new Map<String, Element>() {
|
| + : this.elements = new Map<String, Element>(),
|
| + super(parent) {
|
| assert(parent != null);
|
| }
|
|
|
|
|