| Index: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/element/ConstructorElementImpl.java
|
| diff --git a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/element/ConstructorElementImpl.java b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/element/ConstructorElementImpl.java
|
| index 19ead9687b996750588f8ce47b6948d08b8748d4..1daef3ba7237c2034ce2cb5a4b19fe3f1c8e111e 100644
|
| --- a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/element/ConstructorElementImpl.java
|
| +++ b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/element/ConstructorElementImpl.java
|
| @@ -48,6 +48,17 @@ public class ConstructorElementImpl extends ExecutableElementImpl implements Con
|
| super(name);
|
| }
|
|
|
| + /**
|
| + * Initialize a newly created constructor element to have the given name.
|
| + *
|
| + * @param name the name of this element
|
| + * @param nameOffset the offset of the name of this element in the file that contains the
|
| + * declaration of this element
|
| + */
|
| + public ConstructorElementImpl(String name, int nameOffset) {
|
| + super(name, nameOffset);
|
| + }
|
| +
|
| @Override
|
| public <R> R accept(ElementVisitor<R> visitor) {
|
| return visitor.visitConstructorElement(this);
|
|
|