Congratulations to Devin Cook for the excellent Gold Parser Builder. I finished my programming language specification, written the grammar, tested it with Gold...
Hi ! After the language specification, store the pieaces of reduction events in the objects...finally you will see the AST..!!!!i.e you need to store...
Hi Devin, I thought of this, but was unable to because of the nature of the language I am creating (there's no "generic" rule to separate the different...
cwensley
cwensley@...
Dec 3, 2004 1:33 am
885
Thank you. ... Many of the Engines are very simular in how they are implemented. You could look at the documentation I wrote for the ActiveX Engine - which is...
Looking through the list archives I have seen several references to C# grammars but I can't find any links. Does anyone know if a C# grammar has been released...
Hi Devin What is still unfinished? Would it be possible for you to put the unfinished version on your website, so that others can have a go at finishing it? By...
I believe that ECMA standards are hte offical C# and CLI standards try http://www.ecma-international.org/publications/standards/Stnindex.htm John...
john cork
xuml@...
Dec 6, 2004 2:08 am
890
... Let me think about this a little more. One thing, when inserting new productions, they would, in general need to be inserted into the syntax tree,...
john cork
xuml@...
Dec 6, 2004 3:10 pm
891
Thank you. I actually got very, very close to finishing the C# Grammar. The grammar is, however, extremely ambigious in many regards. It mostly has to do with...
... All the rules of the original grammar are done. Unfortunately, the grammar posted on the Microsoft Website (and the ISO document) are ambigious. The work I...
Hello everyone, I'm currently working on version 2.5 of the Builder. This version will fix the copy-and-paste bug found in Version 2.4.2 as well as expand the ...
... There are several preexisting "preproccessor" and "template" tools and techniques out there to smash multiple text files together. These could be combined...
... and ... could ... toolchain. ... .com Hmm, that's not really what I'm looking for. The language itself doesn't need merging, it's the gold builder grammar...
cwensley
cwensley@...
Dec 6, 2004 11:59 pm
896
... be ... Yes, this is exactly what I would like. I think it would be a really cool feature. The application I'm adding this into already has this type of...
cwensley
cwensley@...
Dec 7, 2004 12:15 am
897
... That's what I was suggesting, using a preprocessor or templated merger of the grammar files into a single grammar file that the builder can understand. You...
Hi, In the grammar editor, copying the selected text with Ctrl-C, always crashes the program with error code 521: Can't open clipboard (actually, the message...
Hi, I'm just testing YaccToGold n rder to help solve my associativity problems in GPB. If I enter this %right BETA %% trm : some BETA some ... YaccToGold...
Hi, I'd like to implement resynchronization after a parsing exception (I'm using Calitha's .Net engine) in order to possibly find further errors in the source...
Hi patric! Are you calling the root node of your ast after the parsing error(after completion of parsing)...? -venki ... Do you Yahoo!? Yahoo! Mail - Find...
Hi everybody; I just want to ask is there anyone working on a game project where you integrate Phython, Perl, or Lua environments to the game engine? I have...
Date: Wed May 5, 2004 6:30 am Hi. In May 5, 2004 I wrote, but nobody answer. I still have a trouble with grammar. I have part of grammar definition for sql...
... Hi Venki, I'm not interacting with the parsing tree directly. I'm currently using Calitha's interface to GPB. This assembly triggers Reduce events that I'm...
Venki, Forget it. I see how I can proceed to recover. Inca se of parsing error, I should push on the stack one of the expected tokens and Parse again. In case...
I made my grammar today. One of the key design decisions is that there is no hierarchy of operators. Everything is done left to right. That's because in this...
... Stack languages like that are best suited to stack structures and building a GOLD Parser grammar for it is slightly overkill. Some of the Lisp fans I've...
I'll definately look into "stack based" languages. I've heard of lisp but never understood that it had this quality. But regarding Gold Parser, if my grammar...
... merger ... can ... command ... it is ... grammar-related ... Hm, yes.. though this must be done during run-time while the modules are being loaded, and...