Hi ... Except it doesn't have my last set of changes in! I just checked my old mail to make sure I sent them to you. Maybe it's time for 2.6.1 :-) BTW, I was...
454
Terence Parr
parrt@...
Jun 1, 1999 7:45 pm
... Very very odd...I am positive that I unrolled your stuff on top of mine! 2.6.1 is ok with me ;) ... let's see if they respond to this... Ter...
455
David LeBlanc
whisper@...
Jun 1, 1999 7:47 pm
This should be 2.6.0b (wondering about the 'b')? Dave LeBlanc...
456
Terence Parr
parrt@...
Jun 1, 1999 9:49 pm
... I screwed up and forgot to add the token stream stuff to the index.html file. If you don't wanna grab the 'b' download, just grab the index.html file from...
457
David LeBlanc
whisper@...
Jun 2, 1999 1:09 am
While i've faithfully tracked java antlr and "played" with it, I have to admit i've never done an antlr based grammer either on the old pccts or new java...
I'm using antlr-2.6.0 and I'm trying to use the new multi-lexer feature as a means to support an INCLUDE directive in my language. When the INCLUDE token is...
460
johnson@...
Jun 9, 1999 7:46 pm
I am new to both Java and Antlr. Have tried the sample programs in "Getting Started With ANTLR" and "Simple..". In both cases I am able to generate the .jav...
461
Doug Erickson
Doug.Erickson@xxxx.xxxx
Jun 9, 1999 7:59 pm
It looks as though you have extracted the files with some tool that doesn't respect long filenames. I recommend InfoZip's free utility ...
462
D. Johnson
johnson@xxx.xxxxxx.xxxx
Jun 11, 1999 12:09 am
Thanks Doug, I've tried just about every combination of things now and no go. Can't even get the jdk demo programs to "run" (same error). Long filenames...
463
Zow Terry Brugger
zow@xxxxx.xxxxxxxxxx....
Jun 10, 1999 2:32 am
... Hash: SHA1 ... I had this problem using the recent (>2.4) releases on Unix platforms - the solution was to recompile ANTLR. However, it sounds like you...
464
Terence Parr
parrt@xxxxx.xxxx
Jun 10, 1999 2:37 am
Folks, The ANTLR BOF will be held next week at JavaOne in San Francisco: "Parsing with ANTLR and JavaTM Technology" Wednesday - June 16th 7:15 am - 8:15 am The...
465
Zow Terry Brugger
zow@xxxxx.xxxxxxxxxx....
Jun 10, 1999 5:14 am
... Hash: SHA1 ... Cool - any admission costs for JavaOne if we just want to drop by the BOF talk? - -- "Zow" Terry Brugger zow@......
466
Terence Parr
parrt@xxxxx.xxxx
Jun 10, 1999 5:49 am
... talk? Hmm...i seriously doubt there will be anybody there checking badges...I certainly won't be ;) Ter...
467
David LeBlanc
whisper@xxxxxxxxx.xxxx
Jun 10, 1999 2:29 am
Hi; I get this @#%@!! error all the time. Usually, it means you're executing in the wrong dir - go figure. For example, if your Main was in simp/Main.java you...
468
Paul Erion
erion@xxxxxx.xxxx
Jun 10, 1999 7:12 pm
Is it possible to declare a lexer [or parser] such that it will implement an interface. For example in MyLexer.g: class MyLexer extends Lexer implements...
469
Ning Ci
cing@xxx.xxx.xxxx
Jun 10, 1999 7:29 pm
Hi Paul, I once posted the same question and found the answer myself: in the options part of your lexer class, do the following: options { classHeaderSuffix =...
470
Paul Erion
erion@xxxxxx.xxxx
Jun 10, 1999 8:16 pm
Thanks, for the answer ... that did the trick. And an apology to all for the lack of a subject line -- I hit the send the button a little too quickly....
471
Paul Erion
erion@xxxxxx.xxxx
Jun 11, 1999 5:50 pm
Yesterday, I received the following reply from "alexande@..." to a post that I had made a while ago: To: erion@... Subject: RE:...
Hi there. I am naively trying to compile the calc example from examples.cpp under ANTLR 2.6.0 using g++ 2.7.2.3.f.2 on Solaris, and getting errors. I've tried...
475
Michael T. Richter
mtr@xxx.xxxx
Jun 15, 1999 4:09 pm
... What you're missing is that g++ is not a standards-compliant C++ compiler. For example <istream> is the proper name for what used to be called <istream.h>....
476
Jagdeep.Rao@xxx.xxxxx...
Jun 15, 1999 4:16 pm
Well.., To be more accurate, the version of g++ you have does not support STL (Standard Template Libraries). The code generated by and used by ANTLR uses STL. ...
477
Michael T. Richter
mtr@xxx.xxxx
Jun 15, 1999 4:33 pm
... with ... Unless this is a VERY recent development, I think you are mistaken. We just recently had to go through the whole "which compilers support STL" ...
478
Jagdeep.Rao@xxx.xxxxx...
Jun 15, 1999 4:38 pm
Well, in that case it would be of interest to know how to generate code that does not use STL and how to make changes to the STLized parts in ANTLR. I foresee...
479
Tom Moog
tmoog@xxxxxxx.xxxx
Jun 15, 1999 5:27 pm
The fallback position is pccts 1.33mr19 which generates g++ compatible code....
480
Robert Sauer
sauer@xxxxxxxxxx.xxxx...
Jun 15, 1999 5:36 pm
... Just take look at www.STLport.org or SGI's STL implementation. I used it successfully with gcc v2.81. Regards, Robert Sauer student of computer science ...
481
eckmann@xx.xxxx.xxxxx...
eckmann@xx.xxxx.xxxxx...
Jun 15, 1999 5:39 pm
Try the egcs version of g++ (http://egcs.cygnus.com). I believe the ANTLR documentation mentions it somewhere. Anyway, it works for me. -Steve...
482
Zhen Liu
ericliu@xxx.xxxx
Jun 15, 1999 5:41 pm
I just throw in 2 more cents from my experience. I have been extensively using STL on various projects. I love it. It greately increased my productivity in ...