Hi, Here is an example.
Type this in a playground in a Pharo 5 image, and all statements before the parentheses become black: | a b c d | a := 42. b := a + 1. c := b + 1. d := c + 1. a . b . c . d } [image: Inline image 2] Here is how this looks in a Pharo 4: [image: Inline image 1] Cheers, Doru On Sat, Sep 5, 2015 at 12:16 AM, Nicolai Hess <[email protected]> wrote: > This depends on the kind of error. For example, a missing open or closed > parenthesis will most > likely mark the whole (following) code. > > But it should still highlight the preceding code. > Can you give an example. > > > nicolai > > > 2015-09-04 23:10 GMT+02:00 Tudor Girba <[email protected]>: > >> Hi, >> >> I think it's nice that we are going towards consolidating our tools >> around RB. >> >> However, the highlighting logic is not quite enough because if I have an >> error anywhere in the code, the whole highlighting disappears. In contrast, >> Shout manages to limit the problem only to the surrounding code. >> >> Is anyone working on this part of the highlighting? >> >> Cheers, >> Doru >> >> -- >> www.tudorgirba.com >> >> "Every thing has its own flow" >> > > -- www.tudorgirba.com "Every thing has its own flow"
