... So do you want to implement your own C# engine for the GOLD parser or do you just want to make a parser? In both cases you can use my Calitha engine as an...
Robert2275
rvl@...
Apr 1, 2005 12:50 pm
1286
The situation is that I have to do a compiler (or a module maybe not complete) of a existing language. The language we have to build the compiler is C#. So, I...
Writing a compiler for most modern languages consists of multiple steps. The first step is to run a parser to determine if the syntax is correct, while...
... shift-reduce ... and infix ... Devin, to be ownest I have no idea about this operators. This is not my grammar, I only need it for work. As for me it's not...
In a change of heart, NICOL now is like a functional language, but with imperative and object-oriented features. Your opinion will be greatly appreciated. You...
Thanks for the answer, I changed the grammar and removed the {sign} in the terminals/lex part of the grammar and it worked fine. The sign was already in the...
# This does not work though i think it should: {UnicodeCharacter} = {All Valid} - {&A0} "Invalid Character Constants" - Bug? If i use the {&n} specifier as...
marutsu_nokoni
spam0@...
Apr 6, 2005 8:48 pm
1293
Yes, that appears to be a rather careless bug. I should have 2.6.1 out shortly....
Devin Cook
GOLD-Admin@...
Apr 7, 2005 8:26 am
1294
In the meantime, you can use range notation (which does work) for a single character. {UnicodeCharacter} = {All Valid} - {&A0 .. &A0} !Necessary since Devin ...
Devin Cook
GOLD-Admin@...
Apr 7, 2005 10:02 am
1295
Thanks a lot for the fast response! Don't worry, you are doing great. ... single ... Devin ... 3, Bug? ... {LineTerminatorCharacter} ... wrong?...
marutsu_nokoni
spam0@...
Apr 7, 2005 12:31 pm
1296
Hello, my name is Enrique González, I started using the GOLD Parser a few days ago. I am making a small interpreter for C# statements. I am using Java grammar...
Enrique Javier Gonz€ ...
hotquik@...
Apr 7, 2005 8:14 pm
1297
Hi, I have tried to install the latest version of GPB. I just wanted to let you know that the installation program (a 16-bit program) still crashes on systems...
I just uploaded version 2.6.1 of the Builder which fixes this bug....
Devin Cook
GOLD-Admin@...
Apr 9, 2005 9:19 am
1299
Excellent! I'll take a look at it....
Devin Cook
GOLD-Admin@...
Apr 9, 2005 9:24 am
1300
Rules can be optional by specifying a nullable rule: <My Rule Opt> ::= <My Rule> | !Empty To make a rule appear exactly five times, the definition is a little...
Devin Cook
GOLD-Admin@...
Apr 9, 2005 9:36 am
1301
Hello everyone, I just uploaded version 2.6.1 of the Builder. The changes are as follows: * Added some additional grammar checks. The checks are designed to ...
Devin, thanks for doing this job. Is there some news about my PostgreSQL dialect grammar? I am just interesting. I think this project is a good crush test for ...
I'll take a look at the program. The Visual Studio installation software can be a tad annoying at times. - Devin...
Devin Cook
GOLD-Admin@...
Apr 11, 2005 6:59 am
1304
That's very strange. Try recompiling the grammar using version 2.6.1 - which I recently uploaded the site. - Devin...
Devin Cook
GOLD-Admin@...
Apr 11, 2005 10:20 am
1305
Hi, I downloaded the 2.6.1 version. The grammar compiled fine, and I am getting the same error. Any clues ? Enrique ... 2.6.1 - which ... must ... ...
Enrique Javier Gonz€ ...
hotquik@...
Apr 11, 2005 12:17 pm
1306
Hi again, I tried parsing the following expression with the java grammar that is on the website: public class Test { static string TestFunction () { return...
Enrique Javier Gonz€ ...
hotquik@...
Apr 13, 2005 5:55 pm
1307
Do you get this problem too if you parse using the GOLD Builder? Or only if you use the Calitha engine?...
Robert2275
rvl@...
Apr 13, 2005 7:15 pm
1308
I'm pretty sure its the grammar. The grammar is based directly off the grammar found on Sun Microsystem's website. Like the offical C# grammar, its very...
Devin Cook
GOLD-Admin@...
Apr 13, 2005 7:36 pm
1309
I just discovered that the problem is being caused by an bug in the LR table construction algorithm. More specifically, it occurs in the partial closures that...
When I try to load a corrupted CGT file with LoadCompiledGrammar(..) this function return False and CGT file remains used by process. GP.Clear, GP.Reset do not...
Thanks for investigating my problem :D Good luck in fixing the bug :) Enrique ... the LR table ... partial closures ... most ... is "inherited" from ... Or ......
Enrique Javier Gonz€ ...
hotquik@...
Apr 13, 2005 9:17 pm
1313
Hello there, Try visiting this well listed Directory on Computers and Internet! ... Here is the link http://hi-fiweb.com/comp Hoping to learn a lot from other...
I have released a beta of 2.6.2. Everyone can download a replacement exe from: http://www.devincook.com/goldparser/builder-2-6-2-beta-exe.zip - Devin...