| Index: dart/compiler/java/com/google/dart/compiler/resolver/MixinScope.java
|
| diff --git a/dart/compiler/java/com/google/dart/compiler/resolver/MixinScope.java b/dart/compiler/java/com/google/dart/compiler/resolver/MixinScope.java
|
| deleted file mode 100644
|
| index e40ff71f0e0bc1eb7167a84464b207589e5e3fb8..0000000000000000000000000000000000000000
|
| --- a/dart/compiler/java/com/google/dart/compiler/resolver/MixinScope.java
|
| +++ /dev/null
|
| @@ -1,27 +0,0 @@
|
| -// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
|
| -// for details. All rights reserved. Use of this source code is governed by a
|
| -// BSD-style license that can be found in the LICENSE file.
|
| -
|
| -package com.google.dart.compiler.resolver;
|
| -
|
| -/**
|
| - * Lexical scope corresponding to a mixin.
|
| - */
|
| -class MixinScope extends Scope {
|
| - private final ClassElement mixinElement;
|
| -
|
| - MixinScope(ClassElement mixinElement) {
|
| - super(mixinElement.getName(), mixinElement.getLibrary(), null);
|
| - this.mixinElement = mixinElement;
|
| - }
|
| -
|
| - @Override
|
| - public Element declareElement(String name, Element element) {
|
| - throw new AssertionError("not supported yet");
|
| - }
|
| -
|
| - @Override
|
| - public Element findLocalElement(String name) {
|
| - return Elements.findElement(mixinElement, name);
|
| - }
|
| -}
|
|
|