Color >> gtInspectorColorIn: composite
    <gtInspectorPresentationOrder: 30>

    composite morph
        title: 'Color';
        display: [ BorderedMorph new color: self ]

pragma := (Color >> #gtInspectorColorIn:) pragmas first
pragma arguments
> 30
pragma keyword
> #gtInspectorPresentationOrder:


I wonder why pragma returns their selector using keyword and not selector?

Especially since message API uses selector.


Pragma >> message
    "Answer the message of the receiving pragma."

    ^ Message selector: self keyword arguments: self arguments.

Stef


Reply via email to