Did anybody develop a grammar for parsing Visual Basic code itself? thanks, snef...
snefedyev
nefis@...
Dec 2, 2003 9:34 am
177
Hi Devin, ... set ... custom ... I'm using the C# version of the engine and it looks like the CurrentReduction property is read-only. Is this a bug or just a ...
I am trying to develope a grammer for a structured Basic language. I am having trouble handeling newline characters outside sub procedures. For example Sub...
Hi, you need to add a NewLines non-terminal to make it work. NewLines ::= NewLine NewLines ... and use NewLines instead of NewLine. You would also need an...
manuel_astudillo
manuel_astudillo@...
Dec 2, 2003 6:23 pm
182
Hi all ! I am having a problem using the GOLDParserEngine (ActiveX). While the VB sample code I found on the net works perfectly, I can't use it correctly ...
Hi All! I have been working with the C#/.NET GOLD Parser Engine for a little while and have run into a problem. I have defined a literal string terminal in my...
... little ... I ... other ... I think, that you have to increase the BUFFERSIZE in the Class "LookAheadReader" to the size you need, for example up to 10MB, ...
Hi, ... 10MB, ... well, thats quite a BAD solution :). It would be better to change the data structure that holds the terminals to a dinamic structure that can...
manuel_astudillo
manuel_astudillo@...
Dec 10, 2003 7:00 pm
186
I was planning to replace LAR's calls with calls to the same functions that are built into the Reader classes (which I don't think are affected by such size...
I am (trying) to parse a c like language which is not line based however it has a few things that are and what I want to do is return the rest of the line as a...
I started on a simple command line utility, and though not finished, I thought some of you may be interested to see it... I've been playing around with the...
Hi Max (and all), Thanks for the reply. The "intelligent" LookAheadReader sounds like a good idea. When will it be ready <grin>? Seriously, I'm OK for now...
Hi, a very nice utility in fact. This will help me a lot to write the documentation of cpp-gpengine. It is exactly this kind of figures I wanted to have, and...
manuel_astudillo
manuel_astudillo@...
Dec 11, 2003 9:18 pm
192
I am developing simple html parser in C. Did anybody develope grammar for parsing html code?....
Hi. I've just downloaded Gold, and I'm wondering if anyone has a compiler the've written using the Gold DLL that they would be willing to share in order to...
Larry my situation is very close to yours, I work in mathematics. If you receive any reply please forward it to me. Thanks, best regards Manuel ... From:...
Manuel Burgos
mburgos@...
Dec 15, 2003 5:20 pm
196
Hi, developing a complete compiler using Gold Parser is not a little task. Although gold parser takes hand of probably the most complicated and maybe boring...
manuel_astudillo
manuel_astudillo@...
Dec 16, 2003 10:52 am
197
Thanks !! I will try and tell you Manuel ... From: "manuel_astudillo" <manuel_astudillo@...> To: <GOLDParser@yahoogroups.com> Sent: Tuesday, December 16,...
Manuel Burgos
mburgos@...
Dec 16, 2003 12:54 pm
198
Many thanks. I've always been interested in compiler construction, and many years back did read some books on the subject. In fact, one of my first tasks at my...
Hi, well, in devin cooks webpage he recommeds a few books. I have read one of them "Introduction to Compilers in Java" and it is quite good. That book is...
manuel_astudillo
manuel_astudillo@...
Dec 16, 2003 5:51 pm
201
Dear Devin, While working on version 2.0.6 (and great thanks for HTML export bugfix!), I noticed an absence: In the 'Test The Grammar' window, under the 'Parse...
... Here's a simple HTML grammar that I wrote a while back. HTML is a very ambigious grammar by nature and it might be easier just to write a stack-based...
Sorry about the delay in responding to your question. Currently, many versions of the GOLD Parser Engine simply disgard the line comment string and continue...
I have an example project on the website that parses a grammar called "simple" and stores the tree in specialized classes. Writing a compiler is a enormous...
I would like to thank everyone who has been so kind to answer questions and make comments. In particular, the help with the compiler questions was superb!...