Search the web
Sign In
New User? Sign Up
GOLDParser · GOLD Parsing System
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1830 - 1869 of 3462   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1830
Thanks again for your help up to now. Albeit your suggestion solves the problem as I stated it, I was wrong to state it the way I did. I wanted to simplify my...
fbaudoux_ir
Offline Send Email
Oct 3, 2005
8:06 am
1832
I noticed that the Java engine contains constants that are not declared as final (with a note from the author not to change the values). Is this on purpose or...
axilmar
Offline Send Email
Oct 4, 2005
12:04 pm
1833
When there is an error in the 'test grammar' window, and I click on the error line, the cursor in the source window is not placed over the error, so I have to...
axilmar
Offline Send Email
Oct 4, 2005
12:11 pm
1839
Hello Folks, Is there a PGT file for Vladimir's C# Engine? Thanks, Pavan...
Pavan Podila
pavan_podila
Offline Send Email
Oct 6, 2005
4:04 pm
1841
Pavan, I do not have PGT file for the engine. I will create one this weekend. Thank you, Vlad...
Vladimir Morozov
vmorozov72
Offline Send Email
Oct 7, 2005
12:43 pm
1842
Dear fellow GP users, I am pleased to announce ASTParser 1.0, an application that can be used to create a parser that can convert a source code file directly ...
axilmar
Offline Send Email
Oct 7, 2005
4:02 pm
1843
Hello Achilleas, I think you have done some fantastic work with the AST parser. Congratulations!!! I saw your source-code and saw that you are actually writing...
Pavan Podila
pavan_podila
Offline Send Email
Oct 7, 2005
6:11 pm
1844
Dear Pavan, The ASTParser works in a very simple way: 1. each class is linked to a rule. 2. each member of a class is linked to one of the rule's symbols. Then...
axilmar
Offline Send Email
Oct 7, 2005
8:47 pm
1845
Hi Achilleas, That sounds neat. I have one question. How do you treat rules that have multiple ways of reduction. For example if: <Procedure> ::= <Type>...
Pavan Podila
pavan_podila
Offline Send Email
Oct 7, 2005
11:19 pm
1846
Hello everyone, I am trying to write a grammar which is actually for two different languages fitted together. Based on the scope, a different lexer/parser is...
Pavan Podila
pavan_podila
Offline Send Email
Oct 8, 2005
4:46 am
1847
Hi Pavan, and thanks for the interest. In order to manage rules that have multiple clauses, one has two declare an empty super class, and one class that...
axilmar
Offline Send Email
Oct 8, 2005
12:30 pm
1848
I added a new capability: base class member bindings. Now one can write a base class that contains all the interesting fields, and have subclasses do the...
axilmar
Offline Send Email
Oct 9, 2005
9:24 am
1849
Hello everyone, I have some parser rules which are as below (only a snippet of the complete grammar): identifier = ({Letter} | '_') ({Alphanumeric} | '_')* ...
Pavan Podila
pavan_podila
Offline Send Email
Oct 10, 2005
8:13 pm
1851
Consider the line based log file: their arbitrary lines \n # comment \n @our structured line \n @our structured line 2 \n another of their % ^ abitrary lines ...
Mat Hounsell
mat_geek
Offline Send Email
Oct 11, 2005
6:23 am
1852
From what I can see you declare a terminal that contains a rule: identifier = ({Letter} | '_') ({Alphanumeric} | '_')* <integral_type> I don't know if it is...
axilmar
Offline Send Email
Oct 11, 2005
9:26 am
1853
Oh, the <integral_type> is a rule which is on the next line. I guess you mistook it as being part of the "identifier" terminal. I guess that is probably...
Pavan Podila
pavan_podila
Offline Send Email
Oct 11, 2005
4:19 pm
1855
hello all, First of all, let me congratulate the author of this wonderful parsing system I have 1 request though, I've been working on a parser for Visual...
scrept
Offline
Oct 12, 2005
9:37 am
1856
I have already given you the solution: terminals don't include rules, but rules include terminals. You should change your grammar to: <identifier> ::=...
axilmar
Offline Send Email
Oct 12, 2005
10:14 am
1857
scrept wrote: [...] ... Yes. It is possible, because conflict resolution is programmable in the parser generator on first hand and because grammar designers on...
svv1999
Offline Send Email
Oct 12, 2005
12:06 pm
1858
"Pavan Podila" wrote: [...] ... You have found an inconsistency in GOLD because conflicting terminal definitions are reported but conflicts between a terminal...
svv1999
Offline Send Email
Oct 12, 2005
12:20 pm
1859
Mat Hounsell wrote: [...] ... [...] Context free grammars are best suited for languages where most of the word to be recognized is meaningful and the parts...
svv1999
Offline Send Email
Oct 12, 2005
12:37 pm
1860
Mat Hounsell wrote: [...] ... Cfg's are best suited for languages whose words are mostly meaningful and those parts that are not meaningful are distinguishable...
svv1999
Offline Send Email
Oct 12, 2005
12:38 pm
1862
... If two context free languages L1 and L2 "fit together" in one new language L that is still context free, then there exists a grammar that is LALR(1), i.e....
svv1999
Offline Send Email
Oct 12, 2005
12:52 pm
1863
Hello, I have a need to have something like .* in lex/yacc. This I believe is popularly used in parsing Comments. I was wondering how I could have it part of...
Pavan Podila
pavan_podila
Offline Send Email
Oct 12, 2005
11:50 pm
1864
"Pavan Podila" wrote: [...] ... Do you want to express that {block 1}....{block n} is one token? -manfred...
svv1999
Offline Send Email
Oct 13, 2005
12:49 am
1865
What I want is effectively like a comment, like /* ... */ Just that instead of /* it is '{' and instead of */ it is '{'. I want all the text within the braces...
Pavan Podila
pavan_podila
Offline Send Email
Oct 13, 2005
1:01 am
1866
Hello everyone, Sorry for not being very active in the Yahoo Group this month (and last). I'll be giving a midterm next week and will finally have some free...
Devin Cook
GOLD-Admin@...
Send Email
Oct 13, 2005
3:45 am
1867
Hi, Sorry about the delay in responding. Do you still need help? - Devin...
Devin Cook
GOLD-Admin@...
Send Email
Oct 13, 2005
3:45 am
1868
This project looks great! Do you want me to host your project or link it from the Jave Engine page? I'll try to update the website in the next couple of days. ...
Devin Cook
GOLD-Admin@...
Send Email
Oct 13, 2005
4:41 am
1869
Some parts of the Visual Basic 6 syntax are quite difficult to parse. I have done some work on a VB 6 grammar, but never finished. The array subscript issue...
Devin Cook
GOLD-Admin@...
Send Email
Oct 13, 2005
7:14 am
Messages 1830 - 1869 of 3462   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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