Re: [Pharo-dev] BlueInk shouldn't add parentheses when not needed

2016-05-09 Thread Alistair Grant
On Sun, May 08, 2016 at 01:08:52PM +0200, Peter Uhnák wrote: > On Fri, May 6, 2016 at 7:25 PM, Alistair Grant wrote: > > On 6 May 2016 at 10:56, Sven Van Caekenberghe wrote: > > I have seen this too, and I hate it as well. > > > > I would definitively prefer the minimal syntax: n

Re: [Pharo-dev] BlueInk shouldn't add parentheses when not needed

2016-05-08 Thread Peter Uhnák
On Fri, May 6, 2016 at 7:25 PM, Alistair Grant wrote: > On 6 May 2016 at 10:56, Sven Van Caekenberghe wrote: > > I have seen this too, and I hate it as well. > > > > I would definitively prefer the minimal syntax: no parenthesis when not > needed, not extra $# when not needed. > > > >> On 06 May

Re: [Pharo-dev] BlueInk shouldn't add parentheses when not needed

2016-05-06 Thread Alistair Grant
On 6 May 2016 at 10:56, Sven Van Caekenberghe wrote: > I have seen this too, and I hate it as well. > > I would definitively prefer the minimal syntax: no parenthesis when not > needed, not extra $# when not needed. > >> On 06 May 2016, at 10:26, Peter Uhnák wrote: >> And second, perhaps less im

Re: [Pharo-dev] BlueInk shouldn't add parentheses when not needed

2016-05-06 Thread Peter Uhnák
> > parent isArray ifTrue: [ ^ false ]. Wow this actually seems to work, thanks! We could integrate it for Pharo 6. As for the Literal Array, this appears to solve it BlConfigurableFormatter>>visitLiteralNode: aLiteralNode aLiteralNode value isLiteral ifFalse: [ ^ self writeString: '' ]. aL

Re: [Pharo-dev] BlueInk shouldn't add parentheses when not needed

2016-05-06 Thread Sven Van Caekenberghe
I have seen this too, and I hate it as well. I would definitively prefer the minimal syntax: no parenthesis when not needed, not extra $# when not needed. > On 06 May 2016, at 10:26, Peter Uhnák wrote: > > Hi, > > I thought that I already asked about this but apparently not... > > Right now

Re: [Pharo-dev] BlueInk shouldn't add parentheses when not needed

2016-05-06 Thread Nicolai Hess
2016-05-06 10:26 GMT+02:00 Peter Uhnák : > Hi, > > I thought that I already asked about this but apparently not... > > Right now when I have an array like > > observations := { > MElement -> { > #change -> #(name owner uuid). > #add -> #(). > #remove -> #() > }. > > MContainer -> { > #change -> #(

[Pharo-dev] BlueInk shouldn't add parentheses when not needed

2016-05-06 Thread Peter Uhnák
Hi, I thought that I already asked about this but apparently not... Right now when I have an array like observations := { MElement -> { #change -> #(name owner uuid). #add -> #(). #remove -> #() }. MContainer -> { #change -> #(). #add -> #(add:). #remove -> #(remove:). }. }. it gets formatted