internal error when incorrectly casing member
Posted: Fri Dec 12, 2008 6:15 am
I get internal error when compiling this code
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.
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.