Here's a full compiler of a language called "Sharp" writeen in C# implemented using Gold http://www.codeproject.com/cs/algorithms/compiler.asp ... [Non-text...
VisualBNF is an LALR(1) parser generator downloadable from http://www.intralogic.eu/ and is licensed for 35 US $. Attn: 1) "Intralogic Corp." seems not to be a...
... 4) "Intralogic Corp.", a firm based in Warsaw, Poland, doesn't have a website in Polish. ... Wybierasz się nad wodę? Zadbaj o bezpieczne wakacje! Zobacz...
... Thanks Manfred, I look the message you indicate me but don't help me to resolve the problem Any way actually I implement in the ansi - C grammar some new...
Hello, I'm writing a grammar for a source transformation, from my language to javascript. I want to ignore some part of the source code, so... what rule can I...
... I don't want to check it's grammar) As you might notice you defined in fact two languages, where the one above takes precedence over the other, but in GOLD...
Thanks for replying manfred, I finally did it defining the set.. {Script Chars} = {All Valid} then the terminal... JsLiteral = '#javascript' {Script...
Thanks Manfred. Your help is always appreciated. - Devin _____ From: GOLDParser@yahoogroups.com [mailto:GOLDParser@yahoogroups.com] On Behalf Of svv1999 Sent:...
Devin Cook
GOLD-Admin@...
Aug 20, 2007 6:32 pm
3121
I agree with Manfred, your best approach is to create a preprocessor. Many languages, such as good 'ole C++. use this approach. - Devin _____ From:...
Devin Cook
GOLD-Admin@...
Aug 20, 2007 6:33 pm
3122
Sorry for the recent lack of updates to the Builder. Fortunately, it appears the latest release is bug free . well. er. perhaps the little guys are just ...
Devin Cook
GOLD-Admin@...
Aug 20, 2007 6:39 pm
3123
... Once in VB.NET you may be able to get it to run on Linux with Mono (mono-project.com) without even having to recompile. That could save you from having to...
Hello I have 2 problems, and ask the GOLD community if any of you can give me a clue on this. Introduction I am using a (self made) GLR Parser (implemented...
first off --- excellent product and thanks for the open source. I'm attempting to update the C# grammar found on the site to it's current state and I'm pretty...
Can someone shed some light on the All In One C template that ships with the new engine? I'm looking at the output, and I consider myself a C programmer (well...
Hi, Can anyone help me to define C/C++/C#/JavaScript block comment manually? /* */ I need it because it crash with regular expression in javascript. eg. var r...
I need instruction to write a code template. I would like to write one for C# that is in compliance with the C# Coding Guidelines. For example the current C#...
Hello Devin, How can I introduce the arabic idiom in the grammar?. I have introduced somethig like this: {String Ch} = {Printable} + {Arabic} StringLiteral =...
The error is most likely being caused by the limitations of the Test Window in the Builder. I'm in the process of porting the Builder with VB.NET - where the...
Devin Cook
GOLD-Admin@...
Sep 6, 2007 9:25 am
3135
Hello Devin, In other post you said the same that you have said me now. For string literals, you can define: {String Ch} = {Printable} + {Arabic} StringLiteral...
To use Arabic characters in Identifiers, you also need to use the Arabic characters in the definition: {ID Head} = {Letter} + {Arabic} {ID Tail} =...
Devin Cook
GOLD-Admin@...
Sep 6, 2007 8:35 pm
3137
It could also be the case that the file saves the information in 8-bit ANSI format, but uses XML-style overrides for characters out of the 256 index range. You...
Devin Cook
GOLD-Admin@...
Sep 6, 2007 9:06 pm
3138
Where can I find some instruction on writing a template. My target is C# and I need to have the template generate camel cased names. Thanks ...
I have some documentation located at: http://www.devincook.com/goldparser/doc/templates/index.htm It's not the best, but it should help. If you have any...
Devin Cook
GOLD-Admin@...
Sep 7, 2007 1:40 am
3140
Devin, I have completed the grammar to support Arabic idiom. Now, the test string is successfully parsed. But when I see the Parse Tree, it shows me a...