Hi, Just recently i upgraded my machine(HP-UX) from 1.1.8 to 1.2.2(as well as increased memory usage and decreased performance with the new jvm ;-) i have...
2053
Steve Eckmann
eckmann@...
Jul 7, 2000 7:55 pm
Ter, I'm apparently missing something. My tree walker still hangs after doing what I thought you suggested, so there's obviously something wrong with my code...
2052
Terence Parr
parrt@...
Jul 6, 2000 9:55 pm
... look back at the messages from past week...should be there...note that I hope to put out a3 in the next day or so...it's ready code wise, but wanted to add...
2051
Brian C. Yue
BYue@...
Jul 6, 2000 9:50 pm
Can someone please tell me where to download 2.7.1a2 package? Brian...
2050
Terence Parr
parrt@...
Jul 6, 2000 5:27 pm
... You have not assigned anything to the result value of the rule, #altEvtSpec. You use "es" but it should be #altEvtSpec. Regards, Ter -- Chief Scientist,...
2049
Brian Yue
BYue@...
Jul 6, 2000 2:50 pm
Does anyone successfully compile antlr\examples\cpp92;java and antlr\examples\cpp92;tinyc using Microsoft Visual Studio? Can I try your CPP Libray and the sample...
2048
BYue
BYue@...
Jul 6, 2000 12:51 pm
Did anyone compile the current version of antlr\examples\cpp92;java sample sucssefully? I got a lot of 30 errors as shown below. Can someone tell me what was...
2047
Steve Eckmann
eckmann@...
Jul 6, 2000 9:40 am
I think the Java code generated for this rule is wrong: altEvtSpec returns [Vector e_specs] { Vector t; e_specs = new Vector(); } ... #(BASIC_EVT i:IDENT...
2046
Per Bernhardsson
bard@...
Jul 6, 2000 8:50 am
You must switch on run-time type information (RTTI). / Per...
2045
Sinan Karasu
allahsiz@...
Jul 6, 2000 12:40 am
... ooops: r: #(R xa:A_root xb:B_root {bRule(xb);aRule(xa);} ); of course...
2044
Sinan Karasu
allahsiz@...
Jul 6, 2000 12:35 am
... What I did in interpreters is to tag the trees with a token, r: #(R xa:A_root xb:B_root); is #(R #(A_root a) #(B_root b)); then I can do couple of orphans ...
2043
Mike Barnett
mbarnett@...
Jul 5, 2000 11:50 pm
Thanks! I also am having trouble learning about tree manipulation. But I'd like to avoid two passes because it would entail an extra pass over the whole entire...
2042
Matthew Ford
Matthew.Ford@...
Jul 5, 2000 11:46 pm
RE: [antlr-interest] Manual Tree ConstructionHow about doing two passes of the tree The first pass re-order the nodes r: #(r1:R a1:a b1:b) { ## = #(R1 b1 a1);}...
2041
Mike Barnett
mbarnett@...
Jul 5, 2000 11:24 pm
I am interested in is being able to specify a different order in which to apply the rules of a Tree Walker to the children of a node. For instance if I have...
2040
Brian Yue
BYue@...
Jul 5, 2000 7:45 pm
Can someone look at the following error messages and tell me what were wrong? I tried to compile generated CPP source from "..examples92;cpp\java" using Visual...
2039
Millaway, John
john@...
Jul 5, 2000 4:35 pm
... That won't work. It has to be at the parser level. Example: if( something ) { } I wouldn't want a SEMI at the end of each line!...
2038
dan.stanger@...
Jul 5, 2000 4:25 pm
this should be easy to do with a token stream filter. just maintain a 1 token queue in the filter, and assign a token type to EOL. when you encounter EOL in...
2037
Brian Yue
BYue@...
Jul 5, 2000 3:32 pm
Thanks for John and Richter's advices regarding construction of antlr.CPP LIB using MS Visual Studio. I got 21 warning messages as listed bellow. Some of them...
2036
Michael T. Richter
mtr@...
Jul 5, 2000 2:40 pm
Here's one for MSVC6 that worked with 2.6.1. Maybe someday it can be included in the actual ANTLR distribution.... (Not that I haven't offered this before...
2035
Millaway, John
john@...
Jul 5, 2000 2:03 pm
... Here is a project/workspace that will make antlr.lib and antlrd.lib. Put these in your antrl-2xxx/lib/cpp directory. The steps to build the libs yourself...
2034
BYue
BYue@...
Jul 5, 2000 5:09 am
Can someone tell me where how to build antlr CPP Library with MS Visual C++? Where can I get the workspace? Thanks Brian...
2033
Terence Parr
parrt@...
Jul 4, 2000 7:33 pm
Hi Michael, Getting to your comments finally...sorry for the delay. ... Well, I do lots of imaginary tokens as roots. For example, block ... // add imaginary...
2032
Terence Parr
parrt@...
Jul 4, 2000 6:35 pm
... When they "insert and reparse", you can interpret that to mean "report and keep going" ;) Ter -- Chief Scientist, http://www.jGuru.com -- Your Java...
2031
Tushars
tushars@...
Jul 3, 2000 9:10 am
unsubscribe please !...
2030
Michael Schmitt
schmitt@...
Jul 3, 2000 7:48 am
... Sorry, I forgot the version number: Sun Workshop 5.0! Michael -- ====================================================================== Michael Schmitt...
2029
Michael Schmitt
schmitt@...
Jul 3, 2000 7:46 am
Hi, the following combinations work perfectly as well: antlr-2.7.1a2 - SUN Workshop - Solaris 2.7 antlr-2.7.1a2 - gcc-2.95.2 - Solaris 2.7 Michael -- ...
2028
Terence Parr
parrt@...
Jul 3, 2000 6:19 am
Folks, I spent some time answering FAQ questions for the ANTLR FAQ at jGuru. I include the changes below. http://www.jguru.com/faq/ANTLR jGuru members (with a...
2027
Tom Moog
tmoog@...
Jul 2, 2000 2:09 pm
If you are using precompiled headers you may want to use the #first <<...>> to have the #include for the MFC header at the start of generated files. Tom Moog ...
2026
Sinan Karasu
allahsiz@...
Jul 2, 2000 4:33 am
... Try these 2... I'll explain Monday .. (gotta go to dinner right now....) pEnumeration : pEnumerationItem ((Comma pEnumerationItem)=>Comma ...
2025
å¼ åº†
zhangqing09542@...
Jul 2, 2000 3:36 am
Hi, Anyone to tell me what should I do to make Pccts work with a project that was need to support MS$ MFC foundation class libaray? Thanks zhangqing ...