David T. Lewis uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-dtl.996.mcz==================== Summary ====================
Name: System-dtl.996
Author: dtl
Time: 24 January 2018, 8:12:21.090624 pm
UUID: 0a3bc42a-c26e-48be-b30f-09fc2970bc7e
Ancestors: System-eem.995
xxxOpenContext:label:contents: is a target of the Project class>>dispatchTo:addPrefixAndSend:withArguments: mechanism. Add it to #baseSelectors so the target methods will appear in sender searches. This was missed in the conversion from #flag: identifiers to the cleaner pragma <hasLiteralTest: #isDispatchSelector:>
=============== Diff against System-eem.995 ===============
Item was changed:
----- Method: Project class>>baseSelectors (in category 'dispatching') -----
baseSelectors
"The list of known base selectors that may be dispatched to project specific
implementations. For example, #OpenLabel:in: will be dispatched to #mvcOpenLabel:in:
for its MVC specific implementation. Add new base selectors here if additional methods
are added as targets of the dispatchTo:addPrefixAndSend:withArguments: mechanism."
^ {
#StartUpLeftFlush .
#StartUpWithCaption:icon:at:allowKeyboard: .
#OpenLabel:in: .
#Open: .
#Open .
#OpenOn:context:label:contents:fullView: .
+ #ResumeProcess: .
+ #OpenContext:label:contents:
- #ResumeProcess:
}
!