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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 3189 - 3218 of 3462   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3189
... The reference grammar for CSS 2.1 seems easier to parse than CSS 2 or CSS 1. I successfully ported it by hand (not extensively tested but it parses my...
xris_wells
Offline
Oct 1, 2007
2:18 pm
3190
Greetings! I'm writting code completion for my own script editor (Pascal Script), based on Delphi components and I have some questions for programming gurus. ...
m.prokhasko
Offline Send Email
Oct 1, 2007
2:19 pm
3191
I've been toying around with creating a template for the Morozov engine, because seeing as how it's so fast it's a pity that there isn't one out there. So,...
Spam Catcher
aldousd666
Offline Send Email
Oct 15, 2007
4:48 am
3192
I'm in the process of creating an AST skeleton generator for C#. I'm going to have it generate a Visitor skeleton and a number of Binary and Unary expression...
Spam Catcher
aldousd666
Offline Send Email
Oct 15, 2007
1:10 pm
3193
Cleaned it up just a bit, if you still want this template, or the one yesterday complained because it was missing the definition of SymbolException or...
Spam Catcher
aldousd666
Offline Send Email
Oct 16, 2007
2:21 am
3194
My idea of it is as follows. I want to build an object tree which represents the parsed data. The tree contains nodes, which may contain other nodes. ...
xris_wells
Offline
Oct 17, 2007
9:09 pm
3195
well you have basically just described a classic AST :) Though I would suggest to make it a template like thingy, youd want to take a few more things for...
Spam Catcher
aldousd666
Offline Send Email
Oct 18, 2007
3:43 am
3196
http://www.codeproject.com/useritems/runsharp.asp This little number speaks for itself. Check it out if you think CodeDom is too difficult, or reflection.emit...
Spam Catcher
aldousd666
Offline Send Email
Oct 21, 2007
2:45 am
3197
I am using the C# Engine written by Morozov along with the C# grammar that is on the GOLD site and available for download. The provided grammar does not...
Johnny Walker
demosthe0001
Offline Send Email
Oct 28, 2007
10:20 am
3198
... Ok I'll try to. ... I haven't ever formally studied parsing; my only experience with parsing is as mentioned in ...
xris_wells
Offline
Oct 28, 2007
10:20 am
3199
I need a way that I can collect comments either via the grammar or by the parser message. I can easily gather terminal and nonterminal object. When using the...
sheffieldmaillard
sheffieldmai...
Offline Send Email
Oct 28, 2007
10:20 am
3200
... Just to let you know that I am currently working on automated discovery of some aspects of the semantic structure that a language encodes. I believe it is...
Szczepan Hołysze...
rulatir
Offline Send Email
Oct 28, 2007
7:42 pm
3201
Nice! I've recently discovered TreeCC, which is actually something meant for this kind of thing, but it's a lot more manual than I'd like, but after you get it...
Spam Catcher
aldousd666
Offline Send Email
Oct 29, 2007
4:00 am
3202
And as for your tagged union structure (a class whose function and type are only differentiated by it's type enum or integer, otherwise known as a Variant in...
Spam Catcher
aldousd666
Offline Send Email
Oct 29, 2007
4:03 am
3203
http://www.dofactory.com/Patterns/Patterns.aspx (Sorry for the bad link before, forgot a bit of it) ... [Non-text portions of this message have been removed]...
Spam Catcher
aldousd666
Offline Send Email
Oct 29, 2007
4:05 am
3204
I think you're referring tot he morozov engine, in which case, from my experience (which is not all that extensive with morozov) you can use TokenSyntaxNode...
Spam Catcher
aldousd666
Offline Send Email
Oct 29, 2007
3:11 pm
3205
the only thing I have a hard time with in the builder is the fact that I can't move the windows out of the main window. I've got two monitors and it would be...
Spam Catcher
aldousd666
Offline Send Email
Oct 30, 2007
3:33 am
3206
Hi, I hope someone can help me with a problem I'm having. First, some background. I needed to define two tokens, one of which is for identifiers (restricted...
mworsnopuk
Offline
Nov 2, 2007
4:05 am
3207
I decided to collect comments by caching the comments during the parse phase. When you execute a parse step you'll get back a message letting you know that the...
Sheffield Maillard
sheffieldmai...
Offline Send Email
Nov 2, 2007
4:06 am
3208
I need to parse C++ header files and need to know if anyone has written a C++ Grammar for Gold Parser. I would hate to duplicate effort. Thanks in advance, ...
sheffieldmaillard
sheffieldmai...
Offline Send Email
Nov 2, 2007
4:06 am
3209
I just found GOLD and am quite used to Lua. So I decided to see if I could put together a grammar file for the Lua language. In the Lua manual it has the...
achargis
Offline Send Email
Nov 2, 2007
4:06 am
3210
Hello everyone, I've become very, very behind on my e-mails. In fact, I am literally buried! As a result, I haven't been able to respond to many of them. I am...
devindcook
Online Now
Nov 2, 2007
5:54 am
3211
I don't know of any C++ grammars offhand. There is a grammar for the C# language – which is almost complete. C++ is a very difficult language to parse. Some...
Devin Cook
GOLD-Admin@...
Send Email
Nov 2, 2007
6:43 am
3212
EBNF has a number of constructs that are not supported by the standard BNF format. Generally, the 1-to-infinity and 0-to-infinity list have to be converted to...
Devin Cook
GOLD-Admin@...
Send Email
Nov 2, 2007
7:46 am
3213
... The definition you wrote for the identifiers and strings can accept many of the name keywords. For instance, the string "test" can be accepted by both ...
Devin Cook
GOLD-Admin@...
Send Email
Nov 2, 2007
7:46 am
3214
Great point. The application currently uses the MDI interface. When I port the Builder to VB.NET, I should be able to add dockable/undockable windows. Have a...
Devin Cook
GOLD-Admin@...
Send Email
Nov 2, 2007
8:10 am
3215
The following grammar does not work in GOLD, it gives a reduce-reduce error. !------------------------ "Case Sensitive" = 'True' "Start Symbol" = <Program> <c>...
sorchasinead_sorchasi...
sorchasinead...
Offline Send Email
Nov 2, 2007
9:41 am
3216
Thanks for your reply. It's probably my fault for not explaining myself clearly enough, but I think you've misunderstood the problem I was trying to explain. ...
mworsnopuk
Offline
Nov 2, 2007
9:41 am
3217
Hello again, Do you still need help with the C# grammar? - Devin _____ From: GOLDParser@yahoogroups.com [mailto:GOLDParser@yahoogroups.com] On Behalf Of...
Devin Cook
GOLD-Admin@...
Send Email
Nov 2, 2007
10:32 am
3218
I don't have a copy of the grammar offhand. If you can located a copy of it in YACC/Bison, then it can be imported into GOLD. Have a great day - Devin _____ ...
Devin Cook
GOLD-Admin@...
Send Email
Nov 2, 2007
10:33 am
Messages 3189 - 3218 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