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 3109 - 3140 of 3462   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3109
Here's a full compiler of a language called "Sharp" writeen in C# implemented using Gold http://www.codeproject.com/cs/algorithms/compiler.asp ... [Non-text...
Spam Catcher
aldousd666
Offline Send Email
Aug 4, 2007
7:01 pm
3110
VisualBNF is an LALR(1) parser generator downloadable from http://www.intralogic.eu/ and is licensed for 35 US $. Attn: 1) "Intralogic Corp." seems not to be a...
svv1999
Offline Send Email
Aug 4, 2007
9:16 pm
3111
... 4) "Intralogic Corp.", a firm based in Warsaw, Poland, doesn't have a website in Polish. ... Wybierasz się nad wodę? Zadbaj o bezpieczne wakacje! Zobacz...
Szczepan Hołyszewski
rulatir
Offline Send Email
Aug 5, 2007
7:25 pm
3112
Hay, I need some help to define a rule to parse and ansi-c statement that generate error when parse it. The statement is: vPth1 = (PT_PATH1)malloc(...
pablokuster
Offline Send Email
Aug 5, 2007
10:15 pm
3113
... The thread starting with message# 3024 in this group might be of interest to you. -manfred...
svv1999
Offline Send Email
Aug 6, 2007
12:44 pm
3115
... Thanks Manfred, I look the message you indicate me but don't help me to resolve the problem Any way actually I implement in the ansi - C grammar some new...
pablokuster
Offline Send Email
Aug 10, 2007
11:09 pm
3116
Hello, I'm writing a grammar for a source transformation, from my language to javascript. I want to ignore some part of the source code, so... what rule can I...
Juan Ignacio Lalla
juanlalla
Offline Send Email
Aug 19, 2007
6:26 am
3117
... I don't want to check it's grammar) As you might notice you defined in fact two languages, where the one above takes precedence over the other, but in GOLD...
svv1999
Offline Send Email
Aug 19, 2007
7:53 am
3118
Thanks for replying manfred, I finally did it defining the set.. {Script Chars} = {All Valid} then the terminal... JsLiteral = '#javascript' {Script...
Juan Ignacio Lalla
juanlalla
Offline Send Email
Aug 20, 2007
7:55 am
3119
... This will probably match all from the very first begin marker to the very last end marker. -manfred...
svv1999
Offline Send Email
Aug 20, 2007
12:50 pm
3120
Thanks Manfred. Your help is always appreciated. - Devin _____ From: GOLDParser@yahoogroups.com [mailto:GOLDParser@yahoogroups.com] On Behalf Of svv1999 Sent:...
Devin Cook
GOLD-Admin@...
Send Email
Aug 20, 2007
6:32 pm
3121
I agree with Manfred, your best approach is to create a preprocessor. Many languages, such as good 'ole C++. use this approach. - Devin _____ From:...
Devin Cook
GOLD-Admin@...
Send Email
Aug 20, 2007
6:33 pm
3122
Sorry for the recent lack of updates to the Builder. Fortunately, it appears the latest release is bug free . well. er. perhaps the little guys are just ...
Devin Cook
GOLD-Admin@...
Send Email
Aug 20, 2007
6:39 pm
3123
... Once in VB.NET you may be able to get it to run on Linux with Mono (mono-project.com) without even having to recompile. That could save you from having to...
Max Battcher
world_maker
Offline Send Email
Aug 20, 2007
8:10 pm
3124
Hello I have 2 problems, and ask the GOLD community if any of you can give me a clue on this. Introduction I am using a (self made) GLR Parser (implemented...
AndresH
andy_pandora
Offline Send Email
Aug 21, 2007
2:51 am
3125
first off --- excellent product and thanks for the open source. I'm attempting to update the C# grammar found on the site to it's current state and I'm pretty...
stensrbr
Offline Send Email
Aug 21, 2007
5:07 am
3126
You both are right. Thank you. Juan ... De: Devin Cook <GOLD-Admin@...> Para: GOLDParser@yahoogroups.com Enviado: lunes 20 de agosto de 2007,...
Juan Ignacio Lalla
juanlalla
Offline Send Email
Aug 21, 2007
5:17 am
3127
Can someone shed some light on the All In One C template that ships with the new engine? I'm looking at the output, and I consider myself a C programmer (well...
Spam Catcher
aldousd666
Offline Send Email
Aug 24, 2007
3:30 am
3128
Hi, Can anyone help me to define C/C++/C#/JavaScript block comment manually? /* */ I need it because it crash with regular expression in javascript. eg. var r...
Wong Chi Chong
wongchichong
Offline Send Email
Aug 24, 2007
6:03 am
3129
... -manfred...
svv1999
Offline Send Email
Aug 24, 2007
6:23 pm
3130
hah, I guess it pays to read the fine print. thanks. ... [Non-text portions of this message have been removed]...
Spam Catcher
aldousd666
Offline Send Email
Aug 24, 2007
7:06 pm
3132
I need instruction to write a code template. I would like to write one for C# that is in compliance with the C# Coding Guidelines. For example the current C#...
sheffieldmaillard
sheffieldmai...
Offline Send Email
Sep 4, 2007
9:20 pm
3133
Hello Devin, How can I introduce the arabic idiom in the grammar?. I have introduced somethig like this: {String Ch} = {Printable} + {Arabic} StringLiteral =...
diegocandel
Offline Send Email
Sep 5, 2007
2:17 pm
3134
The error is most likely being caused by the limitations of the Test Window in the Builder. I'm in the process of porting the Builder with VB.NET - where the...
Devin Cook
GOLD-Admin@...
Send Email
Sep 6, 2007
9:25 am
3135
Hello Devin, In other post you said the same that you have said me now. For string literals, you can define: {String Ch} = {Printable} + {Arabic} StringLiteral...
diegocandel
Offline Send Email
Sep 6, 2007
7:11 pm
3136
To use Arabic characters in Identifiers, you also need to use the Arabic characters in the definition: {ID Head} = {Letter} + {Arabic} {ID Tail} =...
Devin Cook
GOLD-Admin@...
Send Email
Sep 6, 2007
8:35 pm
3137
It could also be the case that the file saves the information in 8-bit ANSI format, but uses XML-style overrides for characters out of the 256 index range. You...
Devin Cook
GOLD-Admin@...
Send Email
Sep 6, 2007
9:06 pm
3138
Where can I find some instruction on writing a template. My target is C# and I need to have the template generate camel cased names. Thanks ...
Sheffield Maillard
sheffieldmai...
Offline Send Email
Sep 6, 2007
11:17 pm
3139
I have some documentation located at: http://www.devincook.com/goldparser/doc/templates/index.htm It's not the best, but it should help. If you have any...
Devin Cook
GOLD-Admin@...
Send Email
Sep 7, 2007
1:40 am
3140
Devin, I have completed the grammar to support Arabic idiom. Now, the test string is successfully parsed. But when I see the Parse Tree, it shows me a...
diegocandel
Offline Send Email
Sep 7, 2007
1:26 pm
Messages 3109 - 3140 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