| Index: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/element/VariableElementImpl.java
|
| diff --git a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/element/VariableElementImpl.java b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/element/VariableElementImpl.java
|
| index c948b2ef48a7faf86ccdd5ea3c90d58a00680c20..f62b9d09b3bda632920e51a8bb1491eec96e1018 100644
|
| --- a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/element/VariableElementImpl.java
|
| +++ b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/element/VariableElementImpl.java
|
| @@ -94,6 +94,16 @@ public abstract class VariableElementImpl extends ElementImpl implements Variabl
|
| }
|
|
|
| /**
|
| + * Return {@code true} if this variable is potentially mutated somewhere in its scope. This
|
| + * information is only available for local variables (including parameters).
|
| + *
|
| + * @return {@code true} if this variable is potentially mutated somewhere in its scope
|
| + */
|
| + public boolean isPotentiallyMutated() {
|
| + return false;
|
| + }
|
| +
|
| + /**
|
| * Set whether this variable is const to correspond to the given value.
|
| *
|
| * @param isConst {@code true} if the variable is const
|
|
|