| Index: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/element/ElementImpl.java
|
| diff --git a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/element/ElementImpl.java b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/element/ElementImpl.java
|
| index 786d3bc3dda20785afe7a93e25ae7b81cb9f6faf..5910023d67b2978ae2c15de57b7e06d826639ae4 100644
|
| --- a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/element/ElementImpl.java
|
| +++ b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/element/ElementImpl.java
|
| @@ -27,6 +27,7 @@ import com.google.dart.engine.element.LibraryElement;
|
| import com.google.dart.engine.source.Source;
|
| import com.google.dart.engine.utilities.collection.BooleanArray;
|
| import com.google.dart.engine.utilities.general.StringUtilities;
|
| +import com.google.dart.engine.utilities.translation.DartName;
|
|
|
| /**
|
| * The abstract class {@code ElementImpl} implements the behavior common to objects that implement
|
| @@ -72,6 +73,7 @@ public abstract class ElementImpl implements Element {
|
| *
|
| * @param name the name of this element
|
| */
|
| + @DartName("forNode")
|
| public ElementImpl(Identifier name) {
|
| this(name == null ? "" : name.getName(), name == null ? -1 : name.getOffset());
|
| }
|
|
|