I like the suggestions brought by alex. I second them :-). As well, examples would be a great idea....examples of let's say very commonly used languages. for...
Devin Cook" ... That was a poorly-phrased run-on sentence. I was referring to what I am trying to parse as not being well-documented, which is of course not...
Alex K. Angelopoulos
aka@...
Sep 1, 2003 4:40 pm
55
When a parse error is encountered during test, it is currently necessary to scroll all the way down the Parse Action tab to see the line number and column...
There are some sample projects you can download from the Engine Downloads page. http://www.devincook.com/goldparser/download/engine If you are using VB 5 or 6,...
I've downloaded them and i don't understand many parts of the code i hope they'd be more explained, the comments are quite short. I don't know how to use the...
Okay. You're right, I need to comment the sample VB projects better. Basically, each of the VB samples is interacting with the ActiveX version of the GOLD...
When I update the website next, I plan to add a few more pages. So far, I plan to add the following: 1. A glossary. This page will contain a list of parsing...
See my comments below...preceded by *** :-) ... guide. *** Definitaly a good idea. I'm familiar with th eBNF format...and the Extended BNF format but I'm sure...
Devin your tool is awesome. About a year ago I started to write my own LALR in C#, but got side-tracked on other projects and never finished it. You've...
Devin, I am planning to deploy my BoethosVM's execution method from tree- traversal to opcode generation. Therefore it would be useful if some information...
... Are you designing a compiler? If so, it would be a good idea to add a link to full documentation of different instruction sets. ... Yes, I really goofed...
... Thank you! :-) I just need to think of some good propaganda points. So far I have: 1. The GOLD Builder is easy to use. ... this is very relative, so no one...
I've just started using GOLD and I must say I'm impressed. Finally an object oriented way to parse! I'm wondering if anyone crafted a C# grammar. My new...
... Thank you. ... Excellent. If you create a website for the project, I would love to link to it. ... Thank you. I will make sure to forward the information...
... will ... C ... I agree 100%! The C grammar is not for the faint of heart! Part of the reason I wrote the C grammar was stress-testing for the GOLD Builder....
Interesting--I made similar changes to the parser to support reading strings, but didn't make the change for an embedded resource for the CGT, yet. :) BTW, I...
Hi, I'd like to know if there is any site of grammars (such as POP, IRC, HTML and so on) Thanks Carlos Ovando ... Internet GRATIS es Yahoo! Conexión. Usuario:...
I found a copy of the C# grammar on the Microsoft website. Currently it is a web-type format where the rules are hyperlinks (with no special notiation beside...
... I have some grammars located at: http://www.devincook.com/goldparser/download/grammar I haven't played much with POP, but I have written IRC clients in the...
I found a complete C# grammer on the web about a year ago. I forget who wrote this, but it worked in yacc. I converted it to XML for my own reasons but I...
Hi all, I hope someone has seen this and has a simple answer... I'm doing the Good 'Ol list of items productions like the ones below: <List> ::= <Item>...
... *ugh* _parser.TrimReductions = False Sorry everyone! I looked at this line more than once and still managed to read it incorrectly. Looks like the parser...
Rich, I've came along the same situation trying to build an object tree from a script input. Try turning 'Trim Reductions' off, and it makes everything...