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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 881 - 910 of 3462   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
881
The rules are all equivalent. Rules 1, 2 and 3 are alternatives to MyDef....
Devin Cook
devindcook
Offline Send Email
Dec 1, 2004
8:19 am
882
Congratulations to Devin Cook for the excellent Gold Parser Builder. I finished my programming language specification, written the grammar, tested it with Gold...
axilmar
Offline Send Email
Dec 1, 2004
3:49 pm
883
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...
venkateshp_2004
Offline Send Email
Dec 2, 2004
7:47 am
884
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@...
Send Email
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...
Devin Cook
devindcook
Offline Send Email
Dec 3, 2004
8:37 pm
886
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...
garethhayter
Offline Send Email
Dec 4, 2004
2:41 am
887
There are a few Engines that are written using the C# Programming Language. I did some work on a grammar, but never finished it. - Devin Cook...
Devin Cook
devindcook
Offline Send Email
Dec 4, 2004
3:39 am
888
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...
Gareth Hayter
garethhayter
Offline Send Email
Dec 4, 2004
3:49 am
889
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@...
Send Email
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@...
Send Email
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...
Devin Cook
devindcook
Offline Send Email
Dec 6, 2004
7:52 pm
892
... 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...
Devin Cook
devindcook
Offline Send Email
Dec 6, 2004
8:03 pm
893
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 ...
Devin Cook
devindcook
Offline Send Email
Dec 6, 2004
8:26 pm
894
... There are several preexisting "preproccessor" and "template" tools and techniques out there to smash multiple text files together. These could be combined...
Max Battcher
world_maker
Offline Send Email
Dec 6, 2004
11:38 pm
895
... 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@...
Send Email
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@...
Send Email
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...
Max Battcher
world_maker
Offline Send Email
Dec 7, 2004
12:34 am
898
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...
Patrick Philippot
patphilippot
Offline Send Email
Dec 7, 2004
10:29 am
899
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...
Patrick Philippot
patphilippot
Offline Send Email
Dec 7, 2004
5:04 pm
900
hi need only tokenizer part....
aparna_krish81
Offline Send Email
Dec 8, 2004
9:53 am
901
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...
Patrick Philippot
patphilippot
Offline Send Email
Dec 9, 2004
4:10 pm
902
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...
venkatesh palaniappan
venkateshp_2004
Offline Send Email
Dec 9, 2004
6:13 pm
903
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...
eylemugurel
Offline
Dec 10, 2004
10:20 am
904
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...
ken_nikl
Offline Send Email
Dec 10, 2004
10:20 am
905
... 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...
Patrick Philippot
patphilippot
Offline Send Email
Dec 10, 2004
3:31 pm
906
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...
Patrick Philippot
patphilippot
Offline Send Email
Dec 10, 2004
3:59 pm
907
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...
johndehope3
Offline
Dec 13, 2004
1:21 am
908
... 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...
Max Battcher
world_maker
Offline Send Email
Dec 13, 2004
6:05 am
909
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...
johndehope3
Offline
Dec 13, 2004
1:24 pm
910
... merger ... can ... command ... it is ... grammar-related ... Hm, yes.. though this must be done during run-time while the modules are being loaded, and...
cwensley
cwensley@...
Send Email
Dec 14, 2004
6:14 am
Messages 881 - 910 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