[squeak-dev] Unregistered Symbol instances

Frank Shearar frank.shearar at gmail.com
Fri Apr 5 19:45:20 UTC 2013


On 5 April 2013 20:36, Nicolas Cellier
<nicolas.cellier.aka.nice at gmail.com> wrote:
> While trying a (Compiler recompileAll) to check my fix, I had a strange
> thing happening:
> Error selector changed!
>
> Indeed:
>
> (Symbol allSubInstances reject: [:e | (Symbol findInterned: e asString) ==
> e]) asArray
> ->
> #(#comparingStringBetween:and: #openDebuggerOnFailingTestMethod
> #executeShould:inScopeOf:withExceptionDo: #deny:description:resumable:
> #debugAsFailure #runCaseAsFailure:
> #executeShould:inScopeOf:withDescriptionNotContaining: #logFailure:
> #executeShould:inScopeOf:withDescriptionContaining: #extensions)
>
> Is it only me, or can someone confirm?

I think it's only you: I get an empty array. Every one of those
methods is on TestCase though:

(((#(#comparingStringBetween:and: #openDebuggerOnFailingTestMethod
#executeShould:inScopeOf:withExceptionDo: #deny:description:resumable:
#debugAsFailure #runCaseAsFailure:
#executeShould:inScopeOf:withDescriptionNotContaining: #logFailure:
#executeShould:inScopeOf:withDescriptionContaining: #extensions)
    gather: [:sel | SystemNavigation default allImplementorsOf: sel]))
        collect: [:mref | mref actualClass]) asSet
"=> a Set(TestCase)"

frank

> Nicolas
>
>
>


More information about the Squeak-dev mailing list