Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/util/ASTNodeFinder.java')
-rw-r--r--bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/util/ASTNodeFinder.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/util/ASTNodeFinder.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/util/ASTNodeFinder.java
index 8120c9b1..27d639dc 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/util/ASTNodeFinder.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/util/ASTNodeFinder.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2008 IBM Corporation and others.
+ * Copyright (c) 2000, 2011 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -96,7 +96,7 @@ public class ASTNodeFinder {
int parameterCount = parameterTypeSignatures.length;
nextMethod: for (int i = 0, length = methods.length; i < length; i++) {
AbstractMethodDeclaration method = methods[i];
- if (CharOperation.equals(selector, method.selector)) {
+ if (CharOperation.equals(selector, method.getName())) {
Argument[] args = method.arguments;
int argsLength = args == null ? 0 : args.length;
if (argsLength == parameterCount) {
@@ -197,10 +197,10 @@ public class ASTNodeFinder {
int count = 0;
for (int i = 0; i < this.unit.numberInferredTypes; i++) {
InferredType inferredType = this.unit.inferredTypes[i];
- if (!inferredType.isDefinition || inferredType.isEmptyGlobal())
+ if (!inferredType.isDefinition())
continue;
- if (!inferredType.isNamed()) {
+ if (inferredType.isAnonymous) {
if (findAnonymous && ++count == occurenceCount) {
return inferredType;
}

Back to the top