QualifiedNameReference qNameRef = (QualifiedNameReference) reference;
long sourcePosition = qNameRef.sourcePositions[0];
offset = (int) (sourcePosition >>> 32);
length = ((int) sourcePosition) - offset +1;
} else if (reference instanceof LocalDeclaration) {
LocalVariable localVariable = getLocalVariable();
offset = localVariable.nameStart;
length = localVariable.nameEnd-offset+1;
element = localVariable;
this.match = locator.newDeclarationMatch(element, null, accuracy, offset, length);
locator.report(this.match);