Re: [Pharo-users] scope shadowing problem.

2016-11-14 Thread Nicolai Hess
2016-11-14 22:34 GMT+01:00 CodeDmitry : > Is there a way to stop Pharo from preventing me from shadowing blocks? > There is no setting for ignoring this warning, but you can compile the code in a non-interactive way: Object compile: 'foo [ :superenv | | env | env := Dictionary new.

[Pharo-users] scope shadowing problem.

2016-11-14 Thread CodeDmitry
Is there a way to stop Pharo from preventing me from shadowing blocks? [:superenv | |env| env := Dictionary new. [:superenv | |env| env := Dictionary new. [:superenv | |env| env := Dictionary new.