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@...
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@...
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@...
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@...
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: ...
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@...
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@...
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@...
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@...
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@...
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@...
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...
Why could this be happening? I have the following grammar..which builds find in gold builder. "Name" = 'Test' "Author" = 'Dan "Version" = '0.1' "About"...
... In the line "Author" = 'Dan you forgot to finish with single quote (') Hugo...
hugo
hugo@...
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@...
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@...
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@...
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@...
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 -...
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...
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@...
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@...
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@...
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...
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@...
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/...
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...
... 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...
"roggancompona" wrote: [...] ... [...] ... [...] ... [...] ... If you want to learn, why dont you read what is availabe to you? From the homepage of GOLD: "The...
... 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...