Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(29)

Unified Diff: editor/tools/plugins/com.google.dart.engine.services/src/com/google/dart/engine/services/internal/correction/QuickFixProcessorImpl.java

Issue 26096002: New analyzer_experimental snapshot. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/resolver/InheritanceManager.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « no previous file | editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/resolver/InheritanceManager.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698