Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
RE: [cdt-dev] DOM Searching

Being an old Prolog fan and a LISP hater, I had to check this out.

---
% (append L K M) succeeds if M is the result of appending K to L.

append nil K K.
append (X :: L) K (X :: M) :- append L K M.
---

It's amazing what can happen to a technology if you come back to it 16 years
later...

Thanks Rémi,
Doug Schaefer, QNX Software Systems
Eclipse CDT Project Lead, Tools PMC member
http://cdtdoug.blogspot.com
 

> -----Original Message-----
> From: cdt-dev-bounces@xxxxxxxxxxx [mailto:cdt-dev-bounces@xxxxxxxxxxx] On
> Behalf Of Doug Schaefer
> Sent: Wednesday, March 29, 2006 3:57 PM
> To: CDT General developers list.
> Subject: RE: [cdt-dev] DOM Searching
> 
> Lambda Prolog? Very cool.
> 
> We have been using the wiki on wiki.eclipse.org to store developer
> information. On the CDT page you'll see pointers off to plans and a design
> doc I'm currently working on for the PDOM, the new indexer/search
> facility.
> CDT 3.1 is to be released as part of Callisto by the end of June.
> 
> It might be easier if you told me which interfaces you are using and I can
> say what you should look out for.
> 
> Cheers,
> Doug Schaefer, QNX Software Systems
> Eclipse CDT Project Lead, Tools PMC member
> http://cdtdoug.blogspot.com
> 
> 
> > -----Original Message-----
> > From: cdt-dev-bounces@xxxxxxxxxxx [mailto:cdt-dev-bounces@xxxxxxxxxxx]
> On
> > Behalf Of Rémi Dewitte
> > Sent: Wednesday, March 29, 2006 12:30 PM
> > To: CDT General developers list.
> > Subject: Re: [cdt-dev] DOM Searching
> >
> > I am currently developping support for the Lambda Prolog language based
> on
> > the
> > CDT work. Where can we be aware of changes happening with CDT 3.1 ? And
> > when
> > is it planned to be released ? I couldn't find any docs on CDT site.
> > Thanks for your great work.
> > Rémi
> >
> > Le Mercredi 29 Mars 2006 16:02, Doug Schaefer a écrit :
> > > The best place to look is at the implementation of the CSearchPage
> that
> > > manages the C/C++ Search Dialog. It shows all the options to the CDT
> > search
> > > engine.
> > >
> > > Be warned that this is all changing in CDT 3.1, though so these APIs
> > aren't
> > > really considered public.
> > >
> > > Doug Schaefer, QNX Software Systems
> > > Eclipse CDT Project Lead, Tools PMC member
> > > http://cdtdoug.blogspot.com
> > >
> > > > -----Original Message-----
> > > > From: cdt-dev-bounces@xxxxxxxxxxx [mailto:cdt-dev-
> bounces@xxxxxxxxxxx]
> > On
> > > > Behalf Of Stewart, Richard
> > > > Sent: Wednesday, March 29, 2006 8:18 AM
> > > > To: CDT General developers list.
> > > > Subject: [cdt-dev] DOM Searching
> > > >
> > > > I'd like to programmatically find all references in my workspace to
> a
> > > > particular function.  Can somebody point me in the right direction
> of
> > > > where to get started?  Thanks!
> > > >
> > > > Rick
> > > > _______________________________________________
> > > > cdt-dev mailing list
> > > > cdt-dev@xxxxxxxxxxx
> > > > https://dev.eclipse.org/mailman/listinfo/cdt-dev
> > >
> > > _______________________________________________
> > > cdt-dev mailing list
> > > cdt-dev@xxxxxxxxxxx
> > > https://dev.eclipse.org/mailman/listinfo/cdt-dev
> > _______________________________________________
> > cdt-dev mailing list
> > cdt-dev@xxxxxxxxxxx
> > https://dev.eclipse.org/mailman/listinfo/cdt-dev
> _______________________________________________
> cdt-dev mailing list
> cdt-dev@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/cdt-dev


Back to the top