Hi,
apparently CompiledMethod>>#isGTExampleMethod
has been changed from
isGTExampleMethod
^ self pragmas anySatisfy: [ :each | each isGTExamplePragma ]
to
isGTExampleMethod
^ (self pragmas anySatisfy: [ :each | each isGTExamplePragma ])
and: [ self numArgs = 0 ]
In either case this means that if an example has dependencies it is no longer an example, because it has arguments.
Thanks,
Peter