blob: 215efb26fe59988e59ca6a01f43b473d899d23c7 [file] [log] [blame]
// Copyright (c) 2011, 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;
import com.google.dart.compiler.ast.DartNode;
/**
* {@link Element} which has {@link DartNode}.
*/
public interface NodeElement extends Element {
DartNode getNode();
}