Re: jikes & '$' in variable names....

1999-01-29 Thread Ernst de Haan
It's "jikes +$", not "jikes -$" Nelson Minar wrote: > > > 16. boolean Size$readonly = true; > >*** Lexical Error: Illegal token > >now standard javac has nothing t complain about this is there a > >way i culd continue to use jikes? is it a problem with my setup? > > RTFM. Use "jik

Re: jikes & '$' in variable names....

1999-01-24 Thread Jerry McBride
>On Thu, 21 Jan 1999, Nelson Minar wrote: > >> > 16. boolean Size$readonly = true; >> >*** Lexical Error: Illegal token >> >now standard javac has nothing t complain about this is there a >> >way i culd continue to use jikes? is it a problem with my setup? >> >> RTFM. Use "jikes -$".

Re: jikes & '$' in variable names....

1999-01-21 Thread John Summerfield
On Thu, 21 Jan 1999, Nelson Minar wrote: > > 16. boolean Size$readonly = true; > >*** Lexical Error: Illegal token > >now standard javac has nothing t complain about this is there a > >way i culd continue to use jikes? is it a problem with my setup? > > RTFM. Use "jikes -$". I'm no

Re: jikes & '$' in variable names....

1999-01-21 Thread Nelson Minar
> 16. boolean Size$readonly = true; >*** Lexical Error: Illegal token >now standard javac has nothing t complain about this is there a >way i culd continue to use jikes? is it a problem with my setup? RTFM. Use "jikes -$". I'm not sure why they make that an option that's off by defa

jikes & '$' in variable names....

1999-01-21 Thread Bruno Boettcher
hello, i am using jikes regularly, since its much faster than standard JDK, now i begun to fiddle around with the JacORB CORBA implementation, and i get lots of errors of this type: 16. boolean Size$readonly = true; ^ *** Lexical Error: Illegal token now st