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...
Show off your group to the world. Share a photo of your group with us.

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 3132 - 3161 of 3462   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3132
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#...
sheffieldmaillard
sheffieldmai...
Offline Send Email
Sep 4, 2007
9:20 pm
3133
Hello Devin, How can I introduce the arabic idiom in the grammar?. I have introduced somethig like this: {String Ch} = {Printable} + {Arabic} StringLiteral =...
diegocandel
Offline Send Email
Sep 5, 2007
2:17 pm
3134
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@...
Send Email
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...
diegocandel
Offline Send Email
Sep 6, 2007
7:11 pm
3136
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@...
Send Email
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@...
Send Email
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 ...
Sheffield Maillard
sheffieldmai...
Offline Send Email
Sep 6, 2007
11:17 pm
3139
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@...
Send Email
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...
diegocandel
Offline Send Email
Sep 7, 2007
1:26 pm
3141
Thanks Devin, All I needed to do was to change the case from uppercase to ProperCase. ... From: Devin Cook <GOLD-Admin@...> To:...
Sheffield Maillard
sheffieldmai...
Offline Send Email
Sep 8, 2007
5:36 am
3142
... 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@...
Send Email
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@...
Send Email
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...
diegocandel
Offline Send Email
Sep 10, 2007
2:01 pm
3145
Hello, How can I introduce the following elements into Gold Parse grammar? (I refer to the next C# elements): - Regions. - Attributs. - Lists. - Properties...
diegocandel
Offline Send Email
Sep 12, 2007
7:13 pm
3146
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...
diegocandel
Offline Send Email
Sep 13, 2007
6:54 pm
3147
Hello, I want to paser the next text of a file: namespace TestCSharpParser { public partial class Form1 : Form { public Form1() { InitializeComponent(); } } } ...
diegocandel
Offline Send Email
Sep 14, 2007
9:15 am
3148
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 ...
metrosexstud
Offline Send Email
Sep 15, 2007
10:21 pm
3149
Sorry for the lack of responses. I will catch up on e-mail during office hours tomorrow. - Devin _____ From: GOLDParser@yahoogroups.com...
Devin Cook
GOLD-Admin@...
Send Email
Sep 19, 2007
6:46 am
3150
Hello, Where can I download the Gold Parser Source Code?. Thanks....
diegocandel
Offline Send Email
Sep 20, 2007
10:36 am
3151
Are you having problem the grammar or organizing the information at parse time? - Devin _____ From: GOLDParser@yahoogroups.com...
Devin Cook
GOLD-Admin@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
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#). ...
diegocandel
Offline Send Email
Sep 20, 2007
3:34 pm
3156
Hello Devin, Whatever next you response us as soon as possible. Like this I will be able to continue with my work. Thanks!...
diegocandel
Offline Send Email
Sep 20, 2007
3:36 pm
3157
When you update the grammar on the website, inform us. Thanks....
diegocandel
Offline Send Email
Sep 20, 2007
3:39 pm
3158
Yes, I'm attempting to write a definition for an identifier that accepts letters from all world languages. How can I do it?. Thanks....
diegocandel
Offline Send Email
Sep 20, 2007
11:59 pm
3159
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@...
Send Email
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...
diegocandel
Offline Send Email
Sep 21, 2007
2:02 pm
3161
The parser has a syntax error when it encounters the #... directives. There are preprocessor directives and are usually handled before parse time. However,...
Devin Cook
GOLD-Admin@...
Send Email
Sep 21, 2007
2:05 pm
Messages 3132 - 3161 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