r177435 - Objective-C [qoi]: Provide improved parse diagnostics when

Jordan Rose jordan_rose at apple.com
Tue Mar 19 14:29:57 PDT 2013


On Mar 19, 2013, at 14:21 , jahanian <fjahanian at apple.com> wrote:

> 
> On Mar 19, 2013, at 1:42 PM, Jordan Rose <jordan_rose at apple.com> wrote:
> 
>> 
>> Would it make sense to not just continue but to pretend instead that the '}' is there? I feel like that will give us better recovery. (You'd eliminate those last two errors: "expected '}'" and "missing '@end'".)
> 
> I think by 'pretending' you mean insert a '}' before @end and continue. I thought about this but  I did not want to introduce the bookkeeping
> overhead for the correct case. Do you have a suggestion how to pretend without adding this overhead?

Hm, I see what you mean—right now we unilaterally consume a closing brace when we exit the loop. The easiest way to solve this is to extract the parsing loop and the T.consumeClose() into a helper function, with an early return for the @end case...but that's not exactly pretty. I guess I'll let you make the call (or stand by the call you already made).

Jordan



More information about the cfe-commits mailing list