class WritingStuff
def doThat
tw = StringWriter()
tw.writeline #this is generating the error
class Test
def main is shared
w = WritingStuff()
w.doThat
By the way, is there a compiler trace feature that output each line number before an internal exception occurs or such functionality? I got this bug in a 500 line file and it would help to track down where the parsing choke.