[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.tools.pdt] Re: PDT 2.1.0 @var autocomplete not working

Hi,

Frantisek Troster schrieb:
> as of PDT 2.0 the ability to force a variable type with @var stopped
> working for me:
> 
> /* @var $action ivExtjsActions */
> $action->

There are various bugzilla-entries dealing with this. For example, see

  https://bugs.eclipse.org/bugs/show_bug.cgi?id=238505

or

  https://bugs.eclipse.org/bugs/show_bug.cgi?id=260330

The "workaround" mentioned in bug 238505 (comment no. 6) works like this:

/* @var $action ivExtjsActions */
$action = $action;
$action->

Which seems to be quite ... well, let's say ... sub-optimal.

Regards,
Mark