Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

antlr-interest · ANTLR Interest List [moved]

The Yahoo! Groups Product Blog

Check it out!

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
  Newest  |  < Newer  |  Older >  |  Oldest
Topics Messages Latest Post

Hello, I'm very sorry to be posting so many questions, I'm afraid I have another. I'd also like to thank the people who have responded to me! I'm looking to...
2 Nov 5, 2002
1:10 pm

Anakreon Mejdi
anakreonm
Send Email

If both whitespaces and ':' should be ignored then: class CSVLexer extends Lexer; options{filter=IGNORE;} preotected IGNORE ... '\t ... ; No need to manually...
3 Nov 5, 2002
12:11 pm

Anakreon Mejdi
anakreonm
Send Email

Hello, I'm sorry to post another newbie question but I stumped! I'm looking at the example to ignore whitespace. The text I'm trying to tokenise is:- Assay:...
2 Nov 5, 2002
11:27 am

Ric Klaren
izniegoed
Send Email

I fixed a bug today dealing with the tree parser codegen. My grammer files uses all three types: a parser, a lexer and a tree parser. The token file generated...
1 Nov 5, 2002
12:23 am

Ney, Richard
rney_aspect
Send Email

I modified the section in genBlockFinish to eliminate the break in the default condition of the case statements if it isn't reachable due to the throwing of an...
1 Nov 5, 2002
12:19 am

Ney, Richard
rney_aspect
Send Email

Can someone please help me? I need to write the following functions coded SEPARATELY, then write a main program for each of them to test them: 1) Validate...
1 Nov 4, 2002
6:46 pm

dhart999
Send Email

Hello, I'm attempting to parse something like:- Comment: User , This is a comment MachineID: System , fusion1 I have worked out how to get the token split up...
2 Nov 4, 2002
5:28 pm

mzukowski@...
montyzukowski
Send Email

Hello antlr users. I faced a problem with the Parser generated by antlr, and have possibly dicovered a bug in the code generated. From a rule declared as: ...
4 Nov 4, 2002
4:47 pm

Anakreon Mejdi
anakreonm
Send Email

... significance of whitespace. That's right, the parser can't communicate back to the lexer. I would recommend that your lexer enforce the white space rules...
1 Nov 4, 2002
3:46 pm

mzukowski@...
montyzukowski
Send Email

I read about ignoring whitespace in the lexer, but it's not what I need. If I have a language where whitespace is permitted most places, e.g., between...
1 Nov 4, 2002
7:11 am

Paul J. Lucas
ypjl
Send Email

OK... now I know of its existence I want one - what an impetuous society we live in ;-) Ter, any chance of snagging the implementation of your documentation...
2 Nov 1, 2002
10:17 pm

Terence Parr
parrt2000
Send Email

Hello, I am a new person to ANTLR. I have made some progress but am having some problems. The code beneath is simply to tokenize a CSV file. However I am...
2 Nov 1, 2002
8:14 pm

Brian Smith
antlr1
Send Email

I am not sure to be right, but it seems that to obtain the right included file name when error occurs, needs to add some code like this! Right? With...
1 Nov 1, 2002
6:13 pm

christiancormier
christiancor...
Send Email

I was wondering if there any way to look ahead while parsing a Tree. I know that in a recognizer you can use the LA(1) to test the next token, can I do ...
2 Nov 1, 2002
3:47 pm

mzukowski@...
montyzukowski
Send Email

Hello all, I have to parse the following macro: Syntax: define <macro-name&#39;nonterminal-type> match-string as {"replacement&quot;} Syntax example: define...
1 Nov 1, 2002
3:15 pm

adrian_simionescu
adrian_simio...
Send Email

I have tried recently to build antlr on Solaris (5.7) using gcc (2.95.2 19991024) and jdk 1.3.1. In summary I think that the build process needs to be...
4 Nov 1, 2002
10:31 am

Ric Klaren
izniegoed
Send Email

I am starting to use 2.7a2. I have a simple grammer file with just one rule. I am trying to link the files CC file.o file2.o -lantlr using the libantlr.a It...
1 Oct 31, 2002
10:50 pm

cela_vei
Send Email

In the documentation is mentioned that the labeled subrules will be implemented in an other way. Does this mean that in the next release of antlr it will not...
2 Oct 31, 2002
5:07 pm

Terence Parr
parrt2000
Send Email

Hi, I would like to propose to my company to use antlr for parser generation, and would like to propose the latest 2.7.2a version ... Due to political reasons,...
3 Oct 31, 2002
2:57 pm

elias_biris
Send Email

ANTLR was generating static arrays that were huge for my lexer. It made Java complain about the method being too big (over 65535 bytes). I hacked the ANTLR...
2 Oct 31, 2002
12:02 am

Terence Parr
parrt2000
Send Email

or make a top level rule that calls a protected TEXT with the correct value, e.g. TOP_TEXT: TEXT(false); Monty ... http://docs.yahoo.com/info/terms/...
2 Oct 30, 2002
9:09 pm

praveen_c
Send Email

Where is that param coming from? nextToken() doesn't know anything about it. It doesn't make sense to have a parameter passed in to a non-protected rule in...
2 Oct 30, 2002
7:59 pm

praveen_c
Send Email

I am facing a difficulty with a parser I am writing and need some help. The program should parse ASP which has html tags and code written in JavaScript or...
3 Oct 30, 2002
6:44 pm

Anakreon Mejdi
anakreonm
Send Email

I got ANT 2.7.2 and got rid of the previous problem. Thanks guys. Looks like I'm onto the next one. I pasted the rule and code fragment at the end of this...
2 Oct 30, 2002
5:58 pm

Matt Benson
gudnabrsam
Send Email

For some reason when I use the charVocabulary option in the following grammar, I get code that CANNOT be compiled. When I remove it, I get compilable code. Is...
7 Oct 30, 2002
8:49 am

Jose San Leandro Arme...
jose.sanleandro@...
Send Email

In building a compiler, I want to preprocess the source file and build the symbol table first,but the grammar file is very large,so I hope to only analyse...
1 Oct 29, 2002
2:36 am

xdjicn
Send Email

Given: class MyLexer extends Lexer; options { k = 3; } LT : "lt" | "A1" ; GT : "gt" | "A2" ; I get: warning: lexical nondeterminism between rules LT and GT...
2 Oct 28, 2002
5:33 pm

mzukowski@...
montyzukowski
Send Email

Here's a newbie parser question. I'm trying to produce a hierarchical AST tree from a C++ source file. My lexer works over the 400K codebase, but when I walk...
4 Oct 28, 2002
5:31 pm

mzukowski@...
montyzukowski
Send Email

If I have the following in a lexer: FOO ... ; BAR ... ; What I want is that if isFoo() is false, then the more generic rule BAR to be used. Is the above...
5 Oct 28, 2002
5:26 pm

mzukowski@...
montyzukowski
Send Email

Folks, Anybody interested in the upgraded Java grammar (I groomed it a lot for jguru and folded it back into antlr stuff), can download ...
2 Oct 27, 2002
7:26 pm

Terence Parr
parrt2000
Send Email
  Newest  |  < Newer  |  Older >  |  Oldest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help