Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[Dltk-dev] recent changes to source lookup


  ok, maybe not that recent, but since i checked in the the first cut, andrei made some changes and added a DBGPSourceLookupParticipant class - i'm wondering what this is supposed to do.

 are there other dbgp implementations that use the 'dbgp' scheme? i've only seen 'file' used. also, currently the way it is added to the list of lookup participants means it will never fire. they need to be added all together in an array list like so:

    addParticipants(new ISourceLookupParticipant[] { new DBGPSourceLookupParticipant(), new ScriptSourceLookupParticipant() });

  and even still, this would not work for remote lookups b/c the local and remote debug sessions use different lookup participants all together.

  i've got time to contribute again and i just wanted to get on the same page as everyone else before diving in...

--
-jae

Back to the top