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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 3350 - 3379 of 3462   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3350
Thanks for your reply. I presume that my grammar file will look like this: "Name" = 'Enter the name of the grammar' "Author" = 'Enter your name' ...
johnclarke72
Offline
May 1, 2008
8:14 pm
3351
Thanks for your reply. I took my Visual Parse++ Grammar: %expression Main '[a-zA-Z0-9]+' word; ' ' space; '<[iI]>' italics_on; '</[iI]>' italics_off; '.'...
johnclarke72
Offline
May 1, 2008
8:14 pm
3352
John, I think the grammar has serious drawbacks. First problem is that it does not specify that <italics_on> should be followed by <italics_off>....
kizmailov
Offline Send Email
May 2, 2008
7:54 am
3353
I have defined the following grammar in Visual Parse++ (please note this is a Partial copy of the grammar): %expression Main '<' %ignore,%push...
johnclarke72
Offline
May 2, 2008
8:05 pm
3354
Thanks for your comments. I wanted to define it so that the end italic tag </i> is optional. John ... be...
johnclarke72
Offline
May 2, 2008
8:05 pm
3355
This parsing system is excellent! Love it. However, I am wondering if the C# grammar file has been updated, or is in the process of being updated by anyone. ...
dalbertbrandon
Offline Send Email
May 2, 2008
10:37 pm
3356
... It's unfortunately something you would probably have to build yourself and contribute, because a full C# 2/3/3.5/... parser is something that is certainly...
Max Battcher
world_maker
Offline Send Email
May 3, 2008
5:03 am
3357
Hey Max, Thanks for the insights... Yes, you guessed right, I treated the directive lines as a comments. Also, your right, I forgot about nested generics, so...
dalbertbrandon
Offline Send Email
May 3, 2008
11:31 pm
3358
... For after the fact navigation there's certainly Reflector (and Reflector plugins) for basic stuff and Mono.Cecil for the hard stuff. But your needs are to...
Max Battcher
world_maker
Offline Send Email
May 4, 2008
9:34 pm
3359
Devin, I replied to your question immediately but the message appear to be lost. Basically I wrote that $1, etc. is defined as single $ followed by Integer. ...
kizmailov
Offline Send Email
May 6, 2008
7:07 am
3360
I'm curious if there is any plan for further development of GOLD? Would it be possible to contribute?...
kizmailov
Offline Send Email
May 6, 2008
7:07 am
3361
Hello all of you!, The C# grammar isn't complete. I have been modifying it and I have an excelent and complete grammar. But it is my work during three months...
diegocandel
Offline Send Email
May 6, 2008
6:21 pm
3362
Hello, One help... If you search the next "diegocandel", you will find a lot of posts. These posts are all my questions about how complete the c# grammar. If...
diegocandel
Offline Send Email
May 6, 2008
6:21 pm
3363
In certain languages the 'Comment End'sequence can appear outside of a comment and be a valid sequence. Fro example in lua: --[[ This is a multi-line comment ...
andrew_savinykh
Offline Send Email
May 17, 2008
2:53 pm
3364
Also Calitha Engine for one doesn't parse constructs like /* " */ cirrectly. It goes into the comment mode and then start reading tokens. When " comes along...
andrew_savinykh
Offline Send Email
May 19, 2008
11:17 pm
3365
hey, looky what I just stumbled across. http://msdn.microsoft.com/en-us/library/bb397951.aspx I don't know how close you can come to a full on compiler with...
Kelly Parker
bigblockfw
Offline Send Email
May 24, 2008
7:59 pm
3366
Hi All I'm using a Grammar based on the the SQL-ANSI-89.arm. In this Grammar I defined a "In Expression" like this <In Exp> ::= <Sub Select> ... ...
michael.kroeschel
michael.kroe...
Offline Send Email
Jun 6, 2008
6:39 pm
3367
Hi, i'am new to the GOLD Parser and i try to parse a HTML file with the parser. Is this possible at all and how can i use back links like \k in regular ...
Markus Benz
benz.markus@...
Send Email
Jun 6, 2008
6:39 pm
3368
How do you do the link between a function call (into the parsed script) to a real java function call ? For example, in one side, you have in a script the...
forest4473
Offline
Jun 6, 2008
6:39 pm
3369
How do you do the link between a function call in a script and the corresponding java function ? For example, how do you link the "compute(2, 3)" script line...
forest4473
Offline
Jun 6, 2008
6:39 pm
3370
... Back references are not expressible in a Context-Free Grammar. (Technically they are not expressible in a true regular expression either, but most extended...
Max Battcher
world_maker
Offline Send Email
Jun 6, 2008
8:44 pm
3371
Hi All I' m using a Grammar based on the SQL-ANSI-89 Grammar to parse my Select statements. In the Grammar I defined an Expression for a SQL IN clause like...
michael.kroeschel@...
Send Email
Jun 16, 2008
2:20 pm
3372
Hi, thanks for the help, helped me a lot. Regards Markus ... [Non-text portions of this message have been removed]...
Markus Benz
benz.markus@...
Send Email
Jun 16, 2008
2:20 pm
3373
Use the following definition for string literal: {String Ch 2} = {All Valid} - [''] StringLiteral = '' ({String Ch 2} | '''')* '' Hope this helps Ad....
adrian.r.moore@...
Send Email
Jun 16, 2008
2:59 pm
3374
Hi, I'm having a trouble with "import goldengine.java" It says that package does not exist. How can I fix this problem? Can anyone help me? Thanks in advance!...
Lean
leanalcabasa
Offline Send Email
Jun 23, 2008
7:06 am
3375
lean, ung gold parser is independent program. ang iimport mo is ung java file na na inoutput ng parser thru FileBuffer or FileReader Regards, Christian Valeen...
Christian Valeen Chiu
cdexter_89
Offline Send Email
Jul 2, 2008
12:25 am
3376
Does anyone have a C# grammar capable of dealing with generics? I need to parse cs source code and build a list of class definitions (including nested classes)...
michaelfeingold
Offline Send Email
Jul 9, 2008
10:56 am
3377
Does anyone have a C# grammar capable of dealing with generics? I need to parse cs source code and build a list of class definitions (including nested classes)...
michaelfeingold
Offline Send Email
Jul 9, 2008
10:56 am
3378
Hi Devin; No doubt, your Gold Parser is good but it is incomplete in 2 respects: 1st - No AST generation 2nd - Grammar is incomplete/incorrect I want to use...
kishore_74_lko
Offline Send Email
Jul 9, 2008
10:56 am
3379
Is there a grammar for aspx, or is anyone working on one?...
bwhite_42
Offline Send Email
Jul 9, 2008
10:56 am
Messages 3350 - 3379 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