ClassBuilder>>validatePoolNames bug

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

ClassBuilder>>validatePoolNames bug

Mikael Svane
When trying to add a new PoolConstantsDictionary to a class by typing it in
the class definition before actually creating the pool, I encountered what
must be a bug in ClassBuilder>>validatePoolNames. After warning that a pool
dictionary doesn't exist, it tries to create a new pool by evaluating:

PoolConstantsDictionary name: poolName

but PoolConstantsDictionary class doesn't understand #name: (it should be
#named: instead).

Best regards,
Mikael Svane


Reply | Threaded
Open this post in threaded view
|

Re: ClassBuilder>>validatePoolNames bug

Blair McGlashan
"Mikael Svane" <[hidden email]> wrote in message
news:bmn276$p4hot$[hidden email]...
> When trying to add a new PoolConstantsDictionary to a class by typing it
in
> the class definition before actually creating the pool, I encountered what
> must be a bug in ClassBuilder>>validatePoolNames. After warning that a
pool
> dictionary doesn't exist, it tries to create a new pool by evaluating:
>
> PoolConstantsDictionary name: poolName
>
> but PoolConstantsDictionary class doesn't understand #name: (it should be
> #named: instead).

Thanks Mikael, recorded as #1347 for fixing in the next patch release.

Regards

Blair