[Title] JSDT : Open declaration bug for the LHS of an assignment
authorhyukmin kwon <hyukmin0530.kwon@samsung.com>
Thu, 22 Nov 2012 09:24:41 +0000 (18:24 +0900)
committerhyukmin kwon <hyukmin0530.kwon@samsung.com>
Fri, 23 Nov 2012 03:19:40 +0000 (12:19 +0900)
statement is fixed.
[Desc.] Open declaration bug for the LHS of an assignment
statement is fixed.
[Issue] REDMINE-7454

org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/codeassist/select/SelectionOnSingleNameReference.java

index de19843..2ea52b2 100644 (file)
@@ -78,6 +78,10 @@ public TypeBinding resolveType(BlockScope scope) {
        throw new SelectionNodeFound(binding);
 }
 
+public TypeBinding resolveType(BlockScope scope, boolean define, TypeBinding useType) {
+       return resolveType(scope);
+}
+
 public TypeBinding resolveForAllocation(BlockScope scope, ASTNode location) {
        TypeBinding typeBinding=null;
        this.binding=