summaryrefslogtreecommitdiff
path: root/test/files/neg/t2968b.check
Commit message (Collapse)AuthorAgeFilesLines
* SI-2968 Fix brace healing for `^case (class|object) {`Jason Zaugg2012-10-221-0/+4
The scanner coalesces the pair of tokens into CASEOBJECT or CASECLASS, but fails to set `offset` back to the start of `case`. Brace healing is then unable to correctly guess the location of the missing brace. This commit resets `offset` and `lastOffset`, as though caseobject were a single keyword. Only the former was neccessary to fix this bug; I haven't found a test that shows the need for the latter.