X-Git-Url: http://secure.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/builder/IdentifierIndexManager.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/builder/IdentifierIndexManager.java index 982d0ef..6772af2 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/builder/IdentifierIndexManager.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/builder/IdentifierIndexManager.java @@ -343,7 +343,7 @@ public class IdentifierIndexManager { // InputStream iStream; LineCreator lineCreator = createLineCreator(); try { - addInputStream(new BufferedInputStream(fileToParse.getContents()), fileToParse.getFullPath().toString(), lineCreator); + addInputStream(new BufferedInputStream(fileToParse.getContents()), fileToParse.getProjectRelativePath().toString(), lineCreator); } catch (CoreException e1) { // TODO Auto-generated catch block e1.printStackTrace(); @@ -630,6 +630,14 @@ public class IdentifierIndexManager { // offset information identifier = null; break; + case 'p' : + // PHPdoc offset information + identifier = null; + break; + case 'l' : + // PHPdoc length information + identifier = null; + break; case 'v' : // variable inside a class identifier = token.substring(1);