| Index: editor/tools/plugins/com.google.dart.engine.services/src/com/google/dart/engine/services/internal/correction/QuickFixProcessorImpl.java
|
| diff --git a/editor/tools/plugins/com.google.dart.engine.services/src/com/google/dart/engine/services/internal/correction/QuickFixProcessorImpl.java b/editor/tools/plugins/com.google.dart.engine.services/src/com/google/dart/engine/services/internal/correction/QuickFixProcessorImpl.java
|
| index 66f89f2fd3fadf9078ebc70ef89d2b2509329649..7b55ad59bcb065a4bceec929281e1f9e4f27f741 100644
|
| --- a/editor/tools/plugins/com.google.dart.engine.services/src/com/google/dart/engine/services/internal/correction/QuickFixProcessorImpl.java
|
| +++ b/editor/tools/plugins/com.google.dart.engine.services/src/com/google/dart/engine/services/internal/correction/QuickFixProcessorImpl.java
|
| @@ -550,7 +550,7 @@ public class QuickFixProcessorImpl implements QuickFixProcessor {
|
| for (ConstructorElement superConstructor : superConstructors) {
|
| String constructorName = superConstructor.getName();
|
| // skip private
|
| - if (SimpleIdentifier.isPrivateName(constructorName)) {
|
| + if (Identifier.isPrivateName(constructorName)) {
|
| continue;
|
| }
|
| // prepare SourceBuilder
|
| @@ -617,7 +617,7 @@ public class QuickFixProcessorImpl implements QuickFixProcessor {
|
| for (ConstructorElement superConstructor : superConstructors) {
|
| String constructorName = superConstructor.getName();
|
| // skip private
|
| - if (SimpleIdentifier.isPrivateName(constructorName)) {
|
| + if (Identifier.isPrivateName(constructorName)) {
|
| continue;
|
| }
|
| // prepare parameters and arguments
|
|
|