| Index: lib/compiler/implementation/elements/elements.dart
|
| diff --git a/lib/compiler/implementation/elements/elements.dart b/lib/compiler/implementation/elements/elements.dart
|
| index 12bde397404d3f540ec577175e2f5761b5bcd2f2..53cf714a52f61cda386d2358ab8bb86f53f85283 100644
|
| --- a/lib/compiler/implementation/elements/elements.dart
|
| +++ b/lib/compiler/implementation/elements/elements.dart
|
| @@ -1286,6 +1286,7 @@ class Elements {
|
| static bool isStaticOrTopLevel(Element element) {
|
| return (element != null)
|
| && !element.isInstanceMember()
|
| + && !element.isPrefix()
|
| && element.enclosingElement !== null
|
| && (element.enclosingElement.kind == ElementKind.CLASS ||
|
| element.enclosingElement.kind == ElementKind.COMPILATION_UNIT ||
|
|
|