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...
... The tree is drawn using the TreeView control. The current version evidently doesn't support the full Unicode set yet. When the character is not supported,...
Devin Cook
GOLD-Admin@...
Sep 9, 2007 3:52 am
3143
Oh got it. The .pgt files are simple ASCII files. You can open them in any text editor such as Notepad. The special tag you are looking for is called...
Devin Cook
GOLD-Admin@...
Sep 9, 2007 4:02 am
3144
Hello Devin, I want parsed the next: Using System.Windows.Form; Namespace (Arabic name) {} Where "Arabic name" is an identifier token type. I have put the next...
Hello, How can I introduce the following elements into Gold Parse grammar? (I refer to the next C# elements): - Regions. - Attributs. - Lists. - Properties...
Hello, In the Gold Parser documentation I can see a pre-defined set: {All Valid}. According to the grammar, the {All Valid} character set contains every valid...
Hello, I want to paser the next text of a file: namespace TestCSharpParser { public partial class Form1 : Form { public Form1() { InitializeComponent(); } } } ...
Hi there, I have just downloaded the Morozov C# Engine, which I find to be excellent! However, I am in the process of developing a small simple test grammar ...
Are you having problem the grammar or organizing the information at parse time? - Devin _____ From: GOLDParser@yahoogroups.com...
Devin Cook
GOLD-Admin@...
Sep 20, 2007 1:24 pm
3152
The {All Valid} character set also contains all whitespace, control characters, and punctuation. If you use it directly in a definition, you are basically...
Devin Cook
GOLD-Admin@...
Sep 20, 2007 1:25 pm
3153
Are you looking to add these features to the grammar? If so, the C# grammar on the website has definitions for most of these features. Or, perhaps, do you want...
Devin Cook
GOLD-Admin@...
Sep 20, 2007 1:25 pm
3154
The text creates a syntax error due to two things: First, I didn't have the local function call logic in <Statement Exp>. Second, the grammar reflects the...
Devin Cook
GOLD-Admin@...
Sep 20, 2007 1:50 pm
3155
Yes, I am looking to add these features to the grammar. For instance, when I parse the next text it shows me an error: (it is used to define a button in C#). ...
I just uploaded a new version of the C# grammar. The new version could be compliant with version 2.0 of the C# Programming Language. - Devin ...
Devin Cook
GOLD-Admin@...
Sep 21, 2007 12:14 pm
3160
Devin, please, could you do me a favour?. I need parse the next text of a file urgently and the Gold Parse Builder shows me some errors. Could do you parse it...
The parser has a syntax error when it encounters the #... directives. There are preprocessor directives and are usually handled before parse time. However,...