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...
Show off your group to the world. Share a photo of your group with us.

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 2599 - 2630 of 3462   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2599
Hi, I'm new to the gold parser but have used lex/yacc in the pass (many years ago) to do a token thread interpeter. Can some one point me to a sample...
markholbrooksdi
Offline Send Email
Nov 3, 2006
5:16 pm
2601
Off-topic with likely benefit to the poster. Shoot first! At 11:33 AM 11/4/2006, maark_glass wrote ... J. Merrill / Analytical Software Corp...
J. Merrill
jamesvmerrill
Offline Send Email
Nov 6, 2006
2:04 am
2602
Does anyone have a .grm for Json?...
graham615
Offline Send Email
Nov 10, 2006
9:15 pm
2603
One thing that I found frustrating about the Calitha engine's default template is that it creates a new instance of a CGTReader class no matter how you...
aldousd666
Offline Send Email
Nov 11, 2006
5:03 am
2604
... I used it in part of my parser actually because I'm using Json in an object persistence query language: Here's the long and short of it, might be stuff you...
aldousd666
Offline Send Email
Nov 12, 2006
4:00 am
2605
Do you want to submit a modified version of the Calitha Engine template?...
Devin Cook
GOLD-Admin@...
Send Email
Nov 12, 2006
12:22 pm
2606
Excellent grammar! Do you want to submit a copy for the website? The more grammars the better! Have a great day, - Devin   ... I used it in part of my parser...
Devin Cook
GOLD-Admin@...
Send Email
Nov 12, 2006
12:22 pm
2607
I can't thank you enough. Thank you. I have been playing with this for a couple of days. It should get me going with my xml-rpc grammar. I am working on an...
Graham Henderson
graham615
Offline Send Email
Nov 12, 2006
3:01 pm
2608
... I'll have to clean it up a bit, and I'm really busy at the moment, but I'll try to get that for you as soon as I can though. Let me recommend profiling...
aldousd666
Offline Send Email
Nov 12, 2006
6:40 pm
2609
I deleted the post from the group and banned the user. - Devin...
Devin Cook
GOLD-Admin@...
Send Email
Nov 13, 2006
7:46 pm
2610
<Tydec> ::= 'type' Identifier '=' 'array' 'of' <Type-id> then i input: type intArray = array of int parse error, it read "array of" as a whole token, but not...
tankaiha
Offline Send Email
Nov 15, 2006
5:15 am
2611
... Hello, Tankaiha! You can use: "Auto Whitespace" = 'False' WS = {Whitespace}+ <Typedec> ::= 'type' WS Identifier '=' 'array' WS 'of' WS <Type-id> or...
coolgreentroll
Offline Send Email
Nov 15, 2006
5:37 am
2612
Out of curiosity, why are you disabling auto whitespace? - Devin _____ From: GOLDParser@yahoogroups.com [mailto:GOLDParser@yahoogroups.com] On Behalf Of...
Devin Cook
GOLD-Admin@...
Send Email
Nov 15, 2006
9:10 am
2613
maybe disable auto whitespace is not a good way, i have to add lots of WS in my code. but ')' 'of' can be lexed into two token :( it's my first time use...
tankaiha
Offline Send Email
Nov 15, 2006
9:45 am
2614
... ups.com, ... To control whitespace manual. It is safer....
coolgreentroll
Offline Send Email
Nov 15, 2006
10:29 am
2615
... Could you send me your code? I can see It. May be I can help you... My e-mail: greentroll@... P.S. What do you want to do?...
coolgreentroll
Offline Send Email
Nov 15, 2006
10:41 am
2616
thanku cool, i'm just learning compiler theory and how to use GOLD. the code is from <Modern Compiler implementation in C>....
tankaiha
Offline Send Email
Nov 15, 2006
2:06 pm
2617
i use Gold export Calitha .NET Skeleton code, how can I use it? i first think the code contain all parse code, but seems i also have to include the CGT file in...
tankaiha
Offline Send Email
Nov 15, 2006
2:11 pm
2618
Ah. That's an excellent book. I have a copy of it myself. The book, if I remember correctly, teaches parsing theory using YACC. GOLD is pretty much the same...
Devin Cook
GOLD-Admin@...
Send Email
Nov 15, 2006
3:38 pm
2620
Gang: I am writing a T-SQL grammar and am having problems with Shift-Reduce Conflicts. Basically my issue is that I want the grammar to describe Multiple...
Wayne
bellingham32
Offline Send Email
Nov 19, 2006
9:57 pm
2621
Wellll... If it isn't a really big amount of effort, I, for one, would REALLY appreciate it if you would make it happen. The grammar I'm trying to create...
wulvn
Offline Send Email
Nov 20, 2006
6:06 am
2622
Wayne, Email me at queryadataset-at-hotmail.com. I can give you a GOLD T-SQL grammar. Its been used in a small product I sell at www.queryadataset.com....
adrian.r.moore@...
Send Email
Nov 20, 2006
2:27 pm
2623
Gang: I have three simple questions about terminals, and would appreciate anyone that has time to reply. 1) In this basic grammar: "Start Symbol" = <Query> ...
Wayne
bellingham32
Offline Send Email
Nov 21, 2006
3:40 am
2624
Hi, Can anybody tell where to get some sample projects done using the Java engine. (not the one in gold parser site) And some documentation. - Pramoda ...
Pramoda Dissanayake
ypramodad
Offline Send Email
Nov 21, 2006
10:09 am
2625
... The role of the lexer is to partition the source into portions which can be named without any ambiguity. This contradicts your wish. Hints, i.e. semantic...
svv1999
Offline Send Email
Nov 21, 2006
2:37 pm
2626
Hey Wayne, Although I don't have any solution for you I have run into the same frustration. In my case, on different rules, I wanted to specify a terminal as...
wulvn
Offline Send Email
Nov 21, 2006
11:30 pm
2627
I haven't studied all of what can / cannot be done with different symbol sets - but I suspect that the wisest and easiest course of action is to have one ...
Chris Trelawny-Ross
badajoz1812
Offline Send Email
Nov 22, 2006
3:15 am
2628
Thank you for the answer, it has gotten me a lot farther. I have been looking at your solution for a long time, thinking about it and I don't think this is...
Wayne Berry
bellingham32
Offline Send Email
Nov 22, 2006
5:01 am
2629
Chris, Thanks for posting this, I have considered this route, however I can't get my mind around the fact that somehow the parse action should be helping me...
Wayne
bellingham32
Offline Send Email
Nov 22, 2006
5:06 am
2630
There is a copy of the SQL grammar on the website. Does the syntax of T-SQL allow the changing of Select statements? - Devin _____ From:...
Devin Cook
GOLD-Admin@...
Send Email
Nov 22, 2006
5:38 am
Messages 2599 - 2630 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