Folks, I've almost gotten the 2.4.0 release ready to ship...just cleaning up doc. Terence...
3
Terence Parr
parrt@xxxxxxxx.xxxx
Sep 19, 1998 5:48 am
Folks, ANTLR 2.4.0 is now available at http://www.antlr.org/download.html with lots of great new goodies: the Java grammar builds trees and walks them the...
4
Terence Parr
parrt@...
Sep 19, 1998 10:33 pm
... We've thought a lot about this exact thing. A good idea. However, in the presence of actions, I'm thinking that this is not even sufficient. I am...
5
Matthew Ford
Matthew.Ford@xxxxxxx....
Sep 19, 1998 11:37 pm
Hi all, Just trying out the new parseview. On the HTML example it gives a null pointer exception. (no exception given when you omit -debug when generating the...
6
Matthew Ford
Matthew.Ford@xxxxxxx....
Sep 19, 1998 11:46 pm
Further to my last message, ParseView is great and much appreciated. When the null pointer problem is fixed I will be using it to see just what the HTML parser...
7
dlarson@xxxxxx.xxxxxx...
dlarson@xxxxxx.xxxxxx...
Sep 20, 1998 4:27 pm
Hi, I can't seem to get ParseView to work in the new 2.4.0 release. I'm sure I'm missing something real simple here. Swing works with other swing apps so I'm ...
8
Matthew Ford
Matthew.Ford@xxxxxxx....
Sep 20, 1998 11:51 pm
... From: Dale Larson <dlarson@...> To: antlr-interest@onelist.com <antlr-interest@onelist.com> Date: Monday, 21 September 1998 9:35 Subject:...
9
dlarson@xxxxxx.xxxxxx...
dlarson@xxxxxx.xxxxxx...
Sep 21, 1998 1:07 pm
Hi, Thanks! I got it working. I just didn't understand how to use the tool. Dale...
10
Monty Zukowski
mzukowsk@xxx.xxxx
Sep 21, 1998 4:38 pm
... Have you, perhaps, an example? Do you mean, copy the super grammar, change at will, then rest assured that you will be notified when the super grammar...
11
Terence Parr
parrt@xxxxxxxx.xxxx
Sep 21, 1998 4:46 pm
Helge, Here's the most obvious example of where inheritance breaks down: when you have to change at least one action in every rule...then you have a nasty ...
12
Lars Clausen
lrclause@xxxxxx.xx.xx...
Sep 23, 1998 3:44 pm
Hi! I'm trying to use antlr to parse a simple SML-like language, and would like to manipulate the AST generation. From the docs, it seems this mini-example ...
13
Monty Zukowski
mzukowsk@xxx.xxxx
Sep 23, 1998 4:04 pm
... From: Lars Clausen <lrclause@...> To: antlr-interest@onelist.com <antlr-interest@onelist.com> Date: Wednesday, September 23, 1998 8:38 AM ...
14
Lars Clausen
lrclause@xxxxxx.xx.xx...
Sep 23, 1998 4:38 pm
... Yes, that was it. Much better now. New question: How do I make imaginary tokens for the AST? Will I have to create some dummy literal in the lexer that...
15
Monty Zukowski
mzukowsk@xxx.xxxx
Sep 23, 1998 4:48 pm
... I'm not sure if a new way has come along, but typically you see an unused parser rule like: imaginaryTokenNodesRuleThatIsNeverCalledByTheParser: FOOBAR ......
16
Lars Clausen
lrclause@xxxxxx.xx.xx...
Sep 23, 1998 4:57 pm
... Ok, that's fairly nice, and prints nicely when used in the [FOOBAR, "foobar"] form. Third problem (last one for today, I promise:) : How do I get all the ...
17
Monty Zukowski
mzukowsk@xxx.xxxx
Sep 23, 1998 6:42 pm
... For now, you don't get all the matches. If that's what you really need then you could use a separate rule. But the most common case, which you are doing...
18
Lars Clausen
lrclause@xxxxxx.xx.xx...
Sep 23, 1998 8:00 pm
... Ok. It seems it was just the lack of AST building that was the problem: apporvar ... { #apporvar = #(#[APP, "app"], f, args); if...
19
Monty Zukowski
mzukowsk@xxx.xxxx
Sep 23, 1998 8:30 pm
... Be careful about re-using nodes. With your code above you end up with two roots with f as a child if args was empty. The first one will be orphaned and...
20
Lars Clausen
lrclause@xxxxxx.xx.xx...
Sep 23, 1998 8:49 pm
... Aha. Nice to know. ... This doesn't match things in the same way as f: IDENT args:( IDENT )*. I know it should... ... That is *great*. Makes...
21
Lars Clausen
lrclause@xxxxxx.xx.xx...
Sep 24, 1998 12:44 am
Now I did it -- made ANTLR crash. That's what happens I suppose, but the email address it says I should send the bug report to isn't valid. Where should it...
22
Terence Parr
parrt@xxxxxxxx.xxxx
Sep 24, 1998 12:54 am
... Still having DNS problems...mail to me here at magelang.com Ter...
23
Steven Atkinson
atkinson@xxxx.xxx.xxxx
Sep 24, 1998 11:42 pm
Hey there. Just wondered if anybody else noticed the comment DOT rule and the lack of a NUM_FLOAT production in the Java lexer??? Cheers, Steve Dr Steven...
24
coriat michel
mcoriat@xxxxxxx.xxxx
Sep 25, 1998 10:01 am
Dear Antlr users, I have downloaded and installed ANTLR 2.40 as described in install.html. I tried to compile the ASTsupport example by running the t.bat batch...
25
Monty Zukowski
mzukowsk@xxx.xxxx
Sep 25, 1998 3:41 pm
... Take a closer look. Both are subsumed in the NUM_INT rule, left factored to deal with ambiguities. Monty...
26
Terence Parr
parrt@xxxxxxxx.xxxx
Sep 25, 1998 4:38 pm
... is your classpath set to have '.' in it? Ter...
27
coriat michel
mcoriat@xxxxxxx.xxxx
Sep 28, 1998 8:20 am
I don't understand ? My CLASSPATH is: c:\program files\jdk1.1.6\lib92;classes.zip;c:\Program Files\swing-1.0.2;c:92;Program Files\antlr-4.0 Michel ... ...
28
John B. Brodie
jbb@xxx.xxxx
Sep 28, 1998 3:27 pm
Pardon me for butting in.... ... I do not know very much about how a Windows machine should be setup. But on my Linux box the Antlr directory is `antlr-2.4.0` ...
29
Terence Parr
parrt@xxxxxxxx.xxxx
Sep 28, 1998 4:16 pm
... Also, put the dot character in as one of your path directories. Ter...
30
Mcree, Randy
randy.mcree@xxxxxx.xxxx
Sep 28, 1998 7:46 pm
Dear ANTLR-folk, The OMG in its finite wisdom has changed their IDL grammar to be context sensitive. Thus the constant "value" may be a keyword, or an...