SlickEdit Community

SlickEdit Product Discussion => SlickEdit® => Topic started by: Christoph on April 02, 2008, 06:20:35 PM

Title: Defs toolbar bug in SE2008?
Post by: Christoph on April 02, 2008, 06:20:35 PM
Are any of you guys using SE2k8 as your IDE for coding PHP?  I've run into an issue and I'm not sure if it's me, if it's supposed to work this way or if it's a bug.  I have a file open and am looking at the information available in the Defs toolbar.  When I define a class, I see the toolbar update with the new class name.  As I add new methods to the class, I see those show up as well.  So, say, this

class JoeBobBriggs
{
  function watch() {}
  function monster() {}
  function vision() {}
}

expands just fine in the toolbar.  However, if I take the same class and indicate that it should implement a particular interface, the definitions for the class disappear.  So the above is good while the below is bad:

class JoeBobBriggs implements iJoeBobBriggs
{
  function watch() {}
  function monster() {}
  function vision() {}
}

Is this just a case of me expecting something I shouldn't be?  Is there a setting I can change so this works? I've done several searches throughout the help but came up with nothing.

Any input would be appreciated!

thnx,
Christoph