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...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

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

All: Prolog language uses lists that look like "[1, 2, 3 | a]". To parse this structure I wrote the following rule. However, AntLR's resultant parser fails...
4 Feb 6, 2001
5:58 pm

Sinan
sinan.karasu@...
Send Email

Hi Terence, I have see on list archive that ANTLR support now Unicode, but what about multi-byte ? ... Deal is that we have Japan users and they want be able...
4 Feb 6, 2001
1:02 am

Matthew Ford
Matthew.Ford@...
Send Email

How can I get access to not just the line and column information but the exact buffer-position for tokens/AST&#39;s in the inputfile/stream ? Max...
2 Feb 5, 2001
4:20 pm

mzukowski@...
Send Email

When you get an exception thrown by the lexer, it is sometimes not caught by the enclosing parser rule. This is not a problem in itself, except that when the...
2 Feb 5, 2001
11:12 am

Ric Klaren
klaren@...
Send Email

Hi All, I want to develop new SQL parser for Valentina database, and I wonder if exists well tested SQL grammar for PCCT I have found in mySQL their grammar...
7 Feb 4, 2001
9:29 pm

Hakki Dogusan
dogusanh@...
Send Email

I would like to embed some java code blocks in automatically generated code: bind (myVariable) { class = "java.lang.Integer"; value = 0; } execute { // some...
1 Feb 4, 2001
4:12 pm

rblaschml@...
Send Email

Why was the whitspace ('\n&#39;) not removed? Given the input: x y I expected the whitespace to be removed and the output to be "xy" but instead it was exactly...
3 Feb 4, 2001
4:11 pm

rblaschml@...
Send Email

... Hi Terence, thank you for this Grammar. At least now there is where to start from. Okay, I will download ANTL now. I work on MAC and use C++. As I see I...
1 Feb 4, 2001
3:10 pm

Ruslan Zasukhin
sunshine@...
Send Email

Hello, all. After getting a little more feedback (thanks to everyone for their suggestions and comments), I've updated the Adder Tutorial (covering extent...
1 Feb 4, 2001
1:23 am

Dan Bornstein
danfuzz@...
Send Email

Hi, Here is a link to a message I posted last year regarding this. http://groups.yahoo.com/group/antlr-interest/message/2230 or search the news group for...
2 Feb 1, 2001
11:08 pm

awinkler@...
Send Email

Hi, I'm not sure if this is desired because from what I've read, this looks like a bug... In my lexer, I am creating a string literal, but removing the quotes ...
1 Feb 1, 2001
10:05 pm

awinkler@...
Send Email

Anyone out there able to offer any additional insight on the pros/cons of SableCC vs. ANTLR? (http://www.sablecc.org) I am unable to get very much information...
2 Feb 1, 2001
7:59 pm

cormier
cormier@...
Send Email

Hello, I am currently converting an old PCCTS grammar of mine to the new ANTLR 2.* syntax. One problem I am confronted with, is the question if the new syntax ...
1 Jan 31, 2001
8:44 am

sfbonn@...
Send Email

Hello! I'm writing an interpreter using antlr 2.7.0. In this version of antlr, there is an utility called ASTFrame, that allows you to graphically see the...
3 Jan 30, 2001
8:44 pm

james@...
Send Email

Hi, I am new in this ANTLR group. We are working on an application that has to transform a logical proposition to its Conjunctive Normal Form (CNF). Doing...
1 Jan 30, 2001
5:32 pm

Santos Galán Casado
sgalan@...
Send Email

Hi Sorry for my poor english !! I try to do an URL parser. In my parser grammar i have an nondeterminism warning that i can not avoid !!! And this ...
4 Jan 29, 2001
7:36 pm

M. Ranganathan
mranga@...
Send Email

I've been working on some code that subclasses BaseAST and run into a probelm with equals. Here's the basic test program I've been running: (JavaTree is a...
3 Jan 29, 2001
3:30 pm

M. Ranganathan
mranga@...
Send Email

Dear All, This is Shravan Kumar from Polaris Software Lab, Global Division. We are looking out for the following skills set for our global operations. ...
1 Jan 29, 2001
11:40 am

shrava_in@...
Send Email

Has anyone out there managed to run antlr on either of these IBM platforms or am I the first to attempt it? TIA. John Lambert...
1 Jan 26, 2001
7:29 pm

John Lambert
johnl@...
Send Email

All: Once two rules are specified: a: ...; b: ...; Now I want to specify a rule that indicates that b follows a _with_no_intervening_whitespace_: c: a (no...
2 Jan 26, 2001
7:01 pm

Dan Bornstein
danfuzz@...
Send Email

I have been writing a fortran/VisulaBasic/DarthmoutBasic to Java converter. I would like to look into writing a C# to Java converter also. Does anyone have a...
1 Jan 25, 2001
11:38 pm

Sinan
sinan.karasu@...
Send Email

Hello All, I was trying to build a lexer to handle unicode characters for java. I could successfully run the antlr.Tool command line utility. However, the java...
9 Jan 25, 2001
6:39 pm

edem_mike@...
Send Email

Hi Ric, I have got a question about your latest development release. This version avoids updating files "XXXTokenTypes.hpp" if no changes occurred. I fully ...
7 Jan 25, 2001
6:25 pm

Sinan
sinan.karasu@...
Send Email

hi, first sorry for my bad english. :-) i have the following text to parse: function foo1( ) as integer if a=b then ... end if if c=b then end if end function ...
1 Jan 24, 2001
8:19 pm

reeichenberger@...
Send Email

Hi Ric, hi Terence, for a simple lexer, parser and treeparser with no user code inside, I get C++ binaries with a size of several megabytes. Do you know why so...
2 Jan 24, 2001
5:00 pm

Ric Klaren
klaren@...
Send Email

Zʋzלޮ+ When you detect an error, or want to abandon processing the current line, switch to a dummy lexer that has only one rule that matches anything....
2 Jan 23, 2001
10:20 pm

Matthew Ford
Matthew.Ford@...
Send Email

All: A prolog parser I am working on has a method "readModule&quot; that should work but does not. Extracting the rule and creating another parser/lexer that has...
2 Jan 23, 2001
6:51 pm

Edison Enterprises Inc
ince@...
Send Email

Hi, I use ANTLR for implementing a command-line interface. Right now (in a pretty brainless way), I instantiate a new lexer and parser to handle a line entered...
1 Jan 23, 2001
3:38 pm

Rajesh Radhakrishnan
rajesh_r@...
Send Email

Hi, I use ANTLR for implementing a command-line interface. Right now (in a pretty brainless way), I instantiate a new lexer and parser to handle a line entered...
1 Jan 23, 2001
3:38 pm

Rajesh Radhakrishnan
rajesh_r@...
Send Email

Thanks to everyone who commented on the first version of the ANTLR tutorial I wrote. I've made a new revision of it, the most notable change of which is that I...
1 Jan 20, 2001
7:08 pm

Dan Bornstein
danfuzz@...
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