[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.tools.pdt] No autocompletion - even with simple code

Hi all,

I have a problem here with autocompletion not working even with that simple code...

class X extends Y implements Z {

public function __construct($host = 'localhost', $port = 8180, $path = '/') {
parent::_construct($host, $port, $path);


		$h <-- no autocompletion here (for $host), only $HTTP_* global variables
	}

}

There's also no overwrite indicator for the constructor.

Any idea what could cause this? In other projects this works fine however.


Ingo