[il-antlr-interest: 22229] [antlr-interest] Representing EBNF grammar in a formal logic notation - regd.

2009-03-04 Thread Ashok Varikuti
Hi List, I am having an antlr tree grammar which is a set of rules and java actions that go along with it. I need to represent the whole process of matching the symbols and the actions that take place after the match in a formal logic notation. Description for logic notation can be found here

[il-antlr-interest: 22041] Re: [antlr-interest] errors in embedding grammar files in maven project - regd.

2009-02-22 Thread Ashok Varikuti
Jim Idle wrote: > On Wed, 2008-12-03 at 20:26 -0600, Ashok Varikuti wrote: >> Hi List, >> >> I encapsulated antlr grammar files in a eclipse maven project. The >> compilation task of grammar files is done at maven compile time. I >> specified the out

[il-antlr-interest: 22040] Re: [antlr-interest] How to get value of next token match - regd.

2009-02-22 Thread Ashok Varikuti
Gavin Lambert wrote: > At 23:55 12/11/2008, Ashok Varikuti wrote: > >node_id[Object g,String subID] returns [int nodeID] @init { > >nodeID=0;} > >: > >( i=id > >| ^(COLON i=id (r=ID) ? ( compass ) ? ) > >) {} > [...] > >For this sam

[il-antlr-interest: 20958] Re: [antlr-interest] jobs in language recognizers development - regd.

2008-12-15 Thread Ashok Varikuti
mani wrote: > Ashok Varikuti wrote: > >> Hi List, >> >> I am a recent graduate in computer science looking out for jobs. What is >> the best possible way for me to hunt for jobs in language >> recognizer's/parser development using ANTLR. Also what would be

[il-antlr-interest: 20955] [antlr-interest] jobs in language recognizers development - regd.

2008-12-15 Thread Ashok Varikuti
Hi List, I am a recent graduate in computer science looking out for jobs. What is the best possible way for me to hunt for jobs in language recognizer's/parser development using ANTLR. Also what would be the best possible way to showcase by skills in this field, I mean are there any certifica

[il-antlr-interest: 20839] Re: [antlr-interest] errors in embedding grammar files in maven project - regd.

2008-12-04 Thread Ashok Varikuti
Ashok Varikuti wrote: > Jim Idle wrote: >> On Wed, 2008-12-03 at 20:26 -0600, Ashok Varikuti wrote: >>> Hi List, >>> >>> I encapsulated antlr grammar files in a eclipse maven project. The >>> compilation task of grammar files is done at maven compil

[il-antlr-interest: 20837] Re: [antlr-interest] errors in embedding grammar files in maven project - regd.

2008-12-04 Thread Ashok Varikuti
Jim Idle wrote: > On Wed, 2008-12-03 at 20:26 -0600, Ashok Varikuti wrote: >> Hi List, >> >> I encapsulated antlr grammar files in a eclipse maven project. The >> compilation task of grammar files is done at maven compile time. I >> specified the out

[il-antlr-interest: 20826] Re: [antlr-interest] errors in embedding grammar files in maven project - regd.

2008-12-03 Thread Ashok Varikuti
Ashok Varikuti wrote: > Hi List, > > I encapsulated antlr grammar files in a eclipse maven project. The > compilation task of grammar files is done at maven compile time. I > specified the output directory to be the following :- > >* target/generated-sources/antlr &

[il-antlr-interest: 20825] [antlr-interest] errors in embedding grammar files in maven project - regd.

2008-12-03 Thread Ashok Varikuti
Hi List, I encapsulated antlr grammar files in a eclipse maven project. The compilation task of grammar files is done at maven compile time. I specified the output directory to be the following :- * target/generated-sources/antlr * dot.grammar o dot.tokens

[il-antlr-interest: 20660] [antlr-interest] Tree grammar usage - regd.

2008-11-25 Thread Ashok Varikuti
Hi List, I am not sure about a tree grammar. In most cases we can include actions in the parser grammar itself. But when do we write a tree grammar. Can some of you throw light on this and enlighten me. -- Ashok R Varikuti Graduate Research Assistant CIS Dept, Kansas State University 785-304-

[il-antlr-interest: 20452] Re: [antlr-interest] How to get value of next token match - regd.

2008-11-12 Thread Ashok Varikuti
Gavin Lambert wrote: > At 23:55 12/11/2008, Ashok Varikuti wrote: > >node_id[Object g,String subID] returns [int nodeID] @init { > >nodeID=0;} > >: > >( i=id > >| ^(COLON i=id (r=ID) ? ( compass ) ? ) > >) {} > [...] > >For this sam

[il-antlr-interest: 20451] Re: [antlr-interest] How to get value of next token match - regd.

2008-11-12 Thread Ashok Varikuti
Gavin Lambert wrote: > At 23:55 12/11/2008, Ashok Varikuti wrote: > >node_id[Object g,String subID] returns [int nodeID] @init { > >nodeID=0;} > >: > >( i=id > >| ^(COLON i=id (r=ID) ? ( compass ) ? ) > >) {} > [...] > >For this sam

[il-antlr-interest: 20449] [antlr-interest] How to get value of next token match - regd.

2008-11-12 Thread Ashok Varikuti
Hello list, My tree grammar looks as follow's:- edges[Object g,String subID] returns [int nodeID] @init { nodeID= 0; } : { int edgeID = 0; } ( ^(D_EDGE_OP ( start=edges[g,subID] | start=node_id[g,subID] ) end=node_id[g,subID] { } node_id[Object g,String subID] returns [in