[Pharo-project] 10243: error related to OB in the transcript
Hi! When I accept methods definition in OB, I have some printout: ERROR: SAXCModule class>>superSenderSelectors ERROR: SAXCModule class>>overridesSelectors ERROR: SAXCModule class>>conflictsSelectors ERROR: SAXCModule class>>suppliedSelectors ERROR: SAXCModule class>>superSenderSelectors ERROR: SAXCModule class>>overridesSelectors ERROR: SAXCModule class>>conflictsSelectors ERROR: SAXCModule class>>suppliedSelectors ERROR: CAnalyzerTest class>>superSenderSelectors ERROR: CAnalyzerTest class>>conflictsSelectors ERROR: CAnalyzerTest class>>overridesSelectors ERROR: CAnalyzerTest class>>suppliedSelectors Maybe this is related to the dynamic protocol recently introduced (which is an excellent thing). I use a 10243. Issue #607 Cheers, Alexandre -- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: Alexandre Bergel http://www.bergel.eu ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
Hi Alex,
When I accept methods definition in OB, I have some printout: ERROR: SAXCModule class>>superSenderSelectors ERROR: SAXCModule class>>overridesSelectors ERROR: SAXCModule class>>conflictsSelectors ERROR: SAXCModule class>>suppliedSelectors
Maybe this is related to the dynamic protocol recently introduced (which is an excellent thing).
yes, you are right, this is caused by dynamic protocols. Those selectors you mention get sent to a class, but they are not defined on Class or Behavior. They are also not extension methods of DynamicProtocols, neither in the recent version nor in older versions. Damien, do you know where this selectors get defined? Is there an external dependency in DynamicProtocols, do we need to load something else to get these methods? David
On Wed, Feb 25, 2009 at 11:20 AM, David Röthlisberger <squeak@webcitas.ch> wrote:
Damien, do you know where this selectors get defined? Is there an external dependency  in DynamicProtocols, do we need to load something else to get these methods?
They are in the ClassSelectorsSet package on SqueakSource. I've just integrated them inside OB-Enhancements. -- Damien Cassou http://damiencassou.seasidehosting.st
Thanks Alexandre On 25 Feb 2009, at 16:54, Damien Cassou wrote:
On Wed, Feb 25, 2009 at 11:20 AM, David Röthlisberger <squeak@webcitas.ch> wrote:
Damien, do you know where this selectors get defined? Is there an external dependency in DynamicProtocols, do we need to load something else to get these methods?
They are in the ClassSelectorsSet package on SqueakSource. I've just integrated them inside OB-Enhancements.
-- Damien Cassou http://damiencassou.seasidehosting.st
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
-- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: Alexandre Bergel http://www.bergel.eu ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
Damien, do you know where this selectors get defined? Is there an external dependency in DynamicProtocols, do we need to load something else to get these methods?
They are in the ClassSelectorsSet package on SqueakSource. I've just integrated them inside OB-Enhancements.
Thanks, Damien! David
participants (4)
-
Alexandre Bergel -
Alexandre Bergel -
Damien Cassou -
David Röthlisberger