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 ]

( https://github.com/feenkcom/gtoolkit-examples/blob/master/src/GToolkit-Examples.package/CompiledMethod.extension/instance/isGTExampleMethod.st , also strange that I don't see the history of the method on github).

In either case this means that if an example has dependencies it is no longer an example, because it has arguments.

Thanks,
Peter