Hi levente
> Frank tried to point out that shadowing a global with a class variable
> actually works.
When I try
Object subclass: #Plop
instanceVariableNames: ''
classVariableNames: 'OrderedCollection Editor'
poolDictionaries: ''
category: 'Citezen-Stef-Scripts'
I get a duplicate warning for Editor.
Same with OrderedCollection. When I proceed it indeed works (which is good)
Now my scenario was that I was using the browser to define classVariable
interactively and I could not for Editor.
So at least this is a good news.
Stef