On Sat, Oct 7, 2017 at 4:12 PM, Tudor Girba <tudor(a)tudorgirba.com> wrote:
Hi Peter,
Nice catch :). Let me explain.
Indeed, we are working right now on the new examples engine, and last
night we switched the Moose configurations to use the new engine.
The new engine no longer uses pragmas to describe dependencies, but plain
unary message sends. So, now the engine recognizes these dependencies:
exampleA
<gtExample>
^ 41
exampleB
<gtExample>
| a |
a := self exampleA.
^ a + 1
Ah, I see. This is indeed more practical when I want to call the method
directly.
Thanks!
Peter