> >> For instance, in order to address a layer with no MetaObjects execution, a >> layer with MetaObjects for logging or breakpoints, an other layer with >> custom MetaObjects, etc. >> I don't see how it would be possible to limit the scope of the active layers >> configuration, just for a block evaluation for exemple... From RFMetaContext >> maybe, but how ?… > > One thing I want to add is to make the condition (optionally) into an object > and then allow reflectivitly to turn on/of links without having to actually > change > the #condition: itself. >
This is now in Pharo5… links can be turned on/off reflectively by using #enable and #disable. I works by wrapping the original condition into a RFCondition object. #disable puts just “false” as the outer condition, but one could put there more complex conditions, too Marcus