I started out with the simple grammar example code contained in Article_demo.zip and Article_src.zip (available on the gold website). This demo compiles and...
... I've collected a set of Klimstra updates contributed by myself and one other (Klimstra himself appears to have disappeared), which is available in the CVS...
Hello every one How to manage the case when a token could be an identifier depending of the context ? Here what i mean, i'm writing a Delphi grammar, Delphi...
Hello again, An other problem with my Delphi grammar is the string terminaison. As you can kown Pascal use single quoted string delimiter : s := 'hello world';...
Frustration! I have been attempting to understand the Simple Interpeter sample code by developing a very simple grammer of my own, and writing the code to test...
... Many ideas. 1. your nick does not propose any good. 2. but you describe your problem and what you have tried without success in enough detail. 3. one...
At 01:35 PM 5/8/2006, svv1999 wrote (in part) ... I have absolutely no idea what you're trying to say (and doubt that anyone else does either). What does "your...
... depending ... that anyone else does either). ... I THINK he means he wants to be able to have a keyword recognized as an identifier if it does not parse...
... Thank's for the answer, i agree with the really bad idea but you have to say that to Borland. The solution i found is not to define read,write and index as...
... out ... debugged ... problem. ... one ... available ... a few ... to ... Studio (the ... the ... for .NET ... in ... Track) ... Ahh well... I'll take a...
... the ... into ... After working with the software for a short while I think I have a basic understanding of its operation... and I think it can be done ...
... Just let me know if you need any help if your switch. The Calitha engine API already has the ability to listen to events and have the ability to abort the...
... Yea... turned out it was pretty easy to use an abort flag in the execute method of simplereduction, that way the recursion backs out gracefully....
Hi all really I need help I want to get my parser to prinnt Arabic letter such as that in ur simple interperator display " Arabic Letter Here " I want to make...
I have been trying for several weeks now to attempt to understand how to get at the data that is returned by the .Tokens(n).Data param of the CurrentReduction...
Hi there, Is it possible somehow to let the parser "learn" new Tokens or Symbols - or whatever the correct word is for that - at runtime? I need to be able to...
... Maybe. Because the constraints are unknown under which such adaptiveness of parsers is possible---at least to me. GOLD cannot support such learning,...
Sorry, I should have mentioned that I'm quite new to GOLD. I get along with it very well but from time to time just have big (at least for me, otherwise I...
... No, as I already explained. The task of the GOLD parser is to check the so called context free part of a language. Those parts that are not context free...
We are using a slightly modified Gold parser engine inside a VB application to parse VB and CS files. We've started to look at improving the performance of the...
i searched group, only a midified ANSI SQL 89 grammer is found. I wish to have a SQL 92 or even 99 grammer, if anyone has, please share it with us:)...
Please have a look at the source code of my C# based engine. I have addressed a number of performance issues there. To solve the problem with with the token...
... Have a look at the pseudo code and you will recognize that a backtracking algorithm is used. This means quadratic runtime in the length of the input in the...