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 1991 - 2020 of 3462   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1991
Sorry about the day. So, are you planning to write a programming language that will be used to read all sorts of data files? That would make a great deal of...
Devin Cook
GOLD-Admin@...
Send Email
Dec 2, 2005
5:48 am
1992
Backus-Naur Form does not contain statesments or phrases that exclude tokens. The best way, in your case, is to a create a rule that accepts all the valid...
Devin Cook
GOLD-Admin@...
Send Email
Dec 2, 2005
5:53 am
1993
Hi All, please could someone explain me why <like predicate> ::= <row value constructor> <NOT> LIKE <pattern> <match value> ::= <row value constructor> ...
Frank Neumann
frank.neumann@...
Send Email
Dec 2, 2005
8:14 am
1994
Hi All, please could someone explain me why <like predicate> ::= <row value constructor> <NOT> LIKE <pattern> <match value> ::= <row value constructor> ...
Frank Neumann
frank.neumann@...
Send Email
Dec 2, 2005
8:26 am
1995
Hey, I am having a silly little problem. The grammar I am trying to create needs to recognize some white spaces while others are to be ignored. For instance: ...
noblesavage3000
Offline Send Email
Dec 4, 2005
4:23 pm
1996
Sorry for the delay in responding. I will get to this e-mail tomorrow (well techinically today, but when the sun's up). - Devin...
Devin Cook
GOLD-Admin@...
Send Email
Dec 7, 2005
10:56 am
1997
Hi, is it possible to designate a rule in such a way that it is not trimmed by the TrimReductions process? Here is the parse tree with TrimeReductions set to...
Frank Neumann
frank.neumann@...
Send Email
Dec 8, 2005
10:21 am
1998
Sorry again for the delay. I have been incredibly busy preparing for Finals. Anyway, enough with my excuses... ... When you use a symbol in the rules - be it...
Devin Cook
GOLD-Admin@...
Send Email
Dec 12, 2005
10:48 am
1999
First off, sorry for the delay, ... Sorry, the answer is no. The Trim Reductions feature is part of the Engine - and may or may not be supported by different...
Devin Cook
GOLD-Admin@...
Send Email
Dec 12, 2005
10:52 am
2000
Thank you for the answer, maybe it's interesting for anyone I have simulated the desired behaviour by adding an optional rule <DISABLE TRIM REDUCTIONS> ::= ...
Frank Neumann
frank.neumann@...
Send Email
Dec 12, 2005
12:44 pm
2001
I am writting an engine for a new script language from scratch. I am using Justin Holmes ANSI C Engine source code as orientation. <../contributors/index.htm> ...
hugo
hugo@...
Send Email
Dec 19, 2005
3:04 pm
2002
Hey Devin, finally back it definately is what were doing for the project. I have a design for it to work and a grammar..just trying to get it to work. The...
donsgood2
Offline Send Email
Dec 21, 2005
6:22 am
2003
Why could this be happening? I have the following grammar..which builds find in gold builder. "Name" = 'Test' "Author" = 'Dan "Version" = '0.1' "About"...
donsgood2
Offline Send Email
Dec 21, 2005
7:13 am
2004
... In the line "Author" = 'Dan you forgot to finish with single quote (') Hugo...
hugo
hugo@...
Send Email
Dec 21, 2005
8:36 am
2005
I am writting an engine for a new script language from scratch. I am using Justin Holmes ANSI C Engine source code as orientation. When parsing a file, how can...
hugo
hugo@...
Send Email
Dec 21, 2005
1:46 pm
2006
I'm not sure off the top of my head. Does the Holmes Engine provide a running line/column variable? - Devin...
Devin Cook
GOLD-Admin@...
Send Email
Dec 22, 2005
3:46 am
2007
Some of the Engines have been highly optimized. Mine, the ActiveX Engine, has not and is, consequently, not particularly efficient for large files. So, are you...
Devin Cook
GOLD-Admin@...
Send Email
Dec 22, 2005
3:50 am
2008
What test information are you using? You defined your "Start Symbol" as <Start>. The definitions are below: <Start> ::= <nl opt> <Program> <Program> ::=...
Devin Cook
GOLD-Admin@...
Send Email
Dec 22, 2005
4:29 am
2009
The engine i'm using was given to me as a VC++7 project. I'm using it as a static library. So the engine will execute in the same process as the application -...
donsgood2
Offline Send Email
Dec 22, 2005
4:33 am
2010
Hi, Ive been playing with golds of and on for some time now. I _think_ I understand how to write most parts of a grammar. however when I reach a certain point...
roggancompona
Offline Send Email
Dec 22, 2005
8:09 am
2011
To run my program i need 2 files, ".exe" and ".cgt". I want to distribute my program with the ".exe" file only. Do you know how to do add the ".cgt" file in my...
hugo
hugo@...
Send Email
Dec 22, 2005
8:46 am
2012
After the various Engines were developed, I added some functionality to program templates which allows all the information - saved to the CGT file - to be...
Devin Cook
GOLD-Admin@...
Send Email
Dec 22, 2005
9:18 am
2013
Good morning, The easiest way to implement the dot-notation is to implement the "dot" as an operator. If I remember correctly, I implemented the logic for...
Devin Cook
GOLD-Admin@...
Send Email
Dec 22, 2005
9:19 am
2014
Version 2.0.3 of the Builder was just released. The new version contains a few, very minor bug fixes and some new editor features. The changes include the...
devindcook
Offline
Dec 22, 2005
9:32 am
2015
I dont find any line/column variable. Do you know, or have an idea, on how can i implement a line/column variable in my engine? Hugo...
hugo
hugo@...
Send Email
Dec 22, 2005
9:40 am
2016
... You can check you IDE's help files for "embedded resources" to embed the cgt in the exe during compile time. -- --Max Battcher-- http://www.worldmaker.net/...
Max Battcher
world_maker
Offline Send Email
Dec 22, 2005
3:49 pm
2017
I looked in the vb.net grammar and dot paths was implemented as a regex is this how one have to work with gold parser? i mean make the grammar more of a hack...
roggancompona
Offline Send Email
Dec 23, 2005
7:46 am
2018
... My GSS language has dot paths implemented in the grammar: http://golddotnet.sourceforge.net/gss/grammar.php ... No, but it might take some practice. It...
Max Battcher
world_maker
Offline Send Email
Dec 23, 2005
8:10 am
2019
"roggancompona" wrote: [...] ... [...] ... [...] ... [...] ... If you want to learn, why dont you read what is availabe to you? From the homepage of GOLD: "The...
svv1999
Offline Send Email
Dec 23, 2005
12:12 pm
2020
... Pretty much. The syntactic structure of many programming languages is quite completx - and nearly ambigious from a parser's point of view. ... ANTLR is a...
Devin Cook
GOLD-Admin@...
Send Email
Dec 23, 2005
12:44 pm
Messages 1991 - 2020 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