PDT Property Support Voting

thread: 14 messages  |  last: about 3 years ago  |  started: friday, october 12, 2007, 5:22 pm pdt


#1  |  Mike Ho (Sunnyvale, CA) United States of America Qcodo Administrator
Friday, October 12, 2007, 5:22 PM PDT

So this is a teeny bit self-serving for us... =)

But for those who have checked out Eclipse PDT <http://www.eclipse.org/pdt/> know what a beautiful tool it is and what it can grow to become, in terms of not only PHP Development, but also Qcodo-based PHP Development.

The PDT project has stabilized to a production release... but it still doesn't support Property-based autocompletion.

Those of you who have used Qcodo even for just five minutes know how much we use Virtual Properties here... and autocompletion support of properties in such a well-developed and open-sourced IDE would be the “killer” feature to have.

There is a enhancement request on the Eclipse PDT Bugs page... and I like the most recent poster on the page, I would encourage everyone to vote for it.

Vote Here Today! <http://bugs.eclipse.org/bugs/show_bug.cgi?id=183352>

#2  |  fimbulvetr (Denver, CO)
Saturday, October 13, 2007, 7:52 AM PDT

Voted!

#3  |  fecool (Bielefeld, NRW) Germany
Sunday, October 14, 2007, 1:38 PM PDT

Me too... didn't even know, one can vote in the eclipse-bugzilla!

#4  |  banetbi (Gloucester, VA) Financial Contributor
Wednesday, October 17, 2007, 11:38 AM PDT

Voted, this would make my life so much simpler.

#5  |  charliez (Cuernavaca, MX) Mexico
Monday, October 22, 2007, 8:41 AM PDT

voted on that... we need more voters!

#6  |  Ren Fritz (Hannover, Germany) Germany
Friday, November 9, 2007, 12:49 PM PST

Done.

Please also vote for

no variable highlighting and no Marking of Occurrences
<https://bugs.eclipse.org/bugs/show_bug.cgi?id=166178>

Detect undefined variables as warnings
<https://bugs.eclipse.org/bugs/show_bug.cgi?id=162771>

The most missing features from phpeclipse, imho

#7  |  Alvaro Linares (Buenos Aires, AR) Argentina
Tuesday, December 11, 2007, 2:29 PM PST

voted the 3!!
pdt rocks! and debugger is working now!!

#8  |  enzo - Eduardo Garcia (San Jos) Colombia
Monday, December 17, 2007, 12:53 PM PST

I was Voted for these bugs

Best regards.

#9  |  emudojo (Costa Rica) Costa Rica
Friday, May 23, 2008, 11:25 AM PDT

It's not something similar to this?

<?php
class foo {
   /**
   * @var subFoo
   **/
   public $a=null;
   
   function __construct() {
       
   }
}

class subFoo {
   function hola() {
       
   }
}

$b = new foo();
$b->a->hola();
?>

in this example Im telling PDT that $a is of type subFoo, and it does the rest (property autocompletion), you can try it by your self

#10  |  animekun (Bandung) Indonesia
Sunday, May 25, 2008, 5:50 PM PDT

Emudjo,
what we want to have is autocompletion for:

<?
class foo {
   public $intA;

   public function __get($var){
     switch($var){
       case 'A': return $intA; break;
     }
   }
}
?>

so the issue is having getter that have different name with the property. Good news is about last notification i've received tell us that this bugs will be check on may 30th (eclipse bugday), hopefully it'll be ready soon =D.

ratno



Copyright © 2005 - 2012, Quasidea Development, LLC
This open-source framework for PHP is released under the terms of The MIT License.