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 633 - 662 of 3462   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
633
Anyone have an answer for this question that I never saw an answer to? Thanks Jeff ... I ... Outgoing mail is certified Virus Free. Checked by AVG anti-virus...
Jeff Kish
kishjeff
Offline Send Email
Sep 2, 2004
1:59 am
634
... Most of the implementations present some form of tree based on the rules you use. You can get a feel for they way most of them break down by downloading...
Max Battcher
world_maker
Offline Send Email
Sep 2, 2004
5:57 am
635
Hello everyone, I have finished a BETA version of the Builder. The goal of the BETA is to find the cause of the mysterous Error 91 (object not set) error that...
Devin Cook
devindcook
Offline Send Email
Sep 4, 2004
11:41 am
636
I'll take a look at it this weekend. My guess is that the rules are creating a precedence-like effect. It might be a good idea to simplify the expressions and...
Devin Cook
devindcook
Offline Send Email
Sep 4, 2004
12:01 pm
637
... <snip> ... so. I ... parser the ... recognizes ... parts ... need ... interpreter ... so. I ... v> Anyone have an answer for this question that I never saw...
Jeff Kish
kishjeff
Offline Send Email
Sep 4, 2004
2:47 pm
638
Something very weird happened in your post. You might want to repost some people can tell what you wrote. YahooGroups only permits plain text and ...
Devin Cook
devindcook
Offline Send Email
Sep 4, 2004
6:24 pm
639
I'm resending this e-mail as a special notice: Hello everyone, I have finished a BETA version of the Builder. The main goal of this BETA is to find the cause...
Devin Cook
devindcook
Offline Send Email
Sep 5, 2004
9:32 am
640
... t; I see. any pointer to such an example would be appreciated. I'm basically trying to figure out, once you have something parsed and validated, what sort...
Jeff Kish
kishjeff
Offline Send Email
Sep 6, 2004
1:41 am
641
Hello, Devin, can you tell us more about this "export to YACC" ? It's so exciting to hear that ! Julien ... De : Devin Cook [mailto:GOLD-Admin@...] ...
Julien Lecomte
j.lecomte@...
Send Email
Sep 6, 2004
10:35 am
642
YACC is one of the leading compiler-compilers (parser generators) available. As a "compiler-compiler", the developer integrates source code directly with the...
Devin Cook
devindcook
Offline Send Email
Sep 6, 2004
11:31 am
643
I uploaded the LALR State Table to the files section of the Yahoo Group. I looked through the states and the answer to the mystery is in State 16. The nature...
Devin Cook
devindcook
Offline Send Email
Sep 6, 2004
12:29 pm
644
Hello, As far as I recall, in the hybrid program, all the grammar definitions are tied to some C/C++ code. Once a grammar is exported to YACC, how will we...
Julien Lecomte
j.lecomte@...
Send Email
Sep 6, 2004
12:48 pm
645
... The exported YACC program will lack any C/C++ code. The developer will have to manually add the code to the rules manually. Also, a Lex file cannot be...
Devin Cook
devindcook
Offline Send Email
Sep 7, 2004
3:36 am
646
Application ================================================ Name : GOLD Parser Builder Version : 2.3 Path : C:\Program Files\GOLD Parser...
logiga_bg
logiga_bg@...
Send Email
Sep 8, 2004
8:02 am
647
I wnat to use XML grammer but it doesn't work with utf-8 characters. I'm looking for a list with character sets. Is there a set with all unicode characters? I...
logiga_bg
Offline Send Email
Sep 8, 2004
8:11 am
648
First off, thank you for the error log. Can you send me the terminal definition for "MyIdeographic". It appears that the overflow happened during the...
Devin Cook
devindcook
Offline Send Email
Sep 8, 2004
9:48 am
649
Are you attempting to include all the characters in Unicode? I plan to allow developers to specify ranges in a future version of the Builder, but I haven't...
Devin Cook
devindcook
Offline Send Email
Sep 8, 2004
9:56 am
650
... appears that ... could ... Sorry for huge message. And I don't understand in your previews answer. Is there a set of all unicode characters that I can use...
logiga_bg
Offline Send Email
Sep 8, 2004
10:25 am
651
So, you want to create a XML grammar that accepts all 1 million code points supported by Unicode? ... or at least the first 65k (since GOLD only currently...
Devin Cook
devindcook
Offline Send Email
Sep 9, 2004
7:14 am
652
To define ranges we can use standard regular expression approach: {Set a} = [{&120}-{&500}] {Set b} = [a-zA-Z0-9] Since '-' appears inside of square brackets,...
Vladimir Morozov
vmorozov72
Offline Send Email
Sep 9, 2004
11:58 am
653
Hello. I'm trying to use GOLD parser in my Windows application (editor), and the possibility to have the list of expected tokens on syntax error is very useful...
sb19742004
sergey.b@...
Send Email
Sep 9, 2004
6:16 pm
654
Dear sir/madam..! I am trying to develop the interpreter/compiler for Macro media director-lingo which could result the target code as Perl for my application....
venkateshp_2004
Offline Send Email
Sep 10, 2004
12:34 pm
655
Hello Venki, On the gold parser website, you'll see many examples of grammars defined in gold parsers. Perhaps the best place to look first is there. From...
stephanerichard
Offline Send Email
Sep 12, 2004
12:39 am
656
First off, sorry about the delay. ... The number of expected terminals that is reported on the Engine is based on the current LALR parse state the system is...
Devin Cook
devindcook
Offline Send Email
Sep 12, 2004
8:38 am
657
... I'm not 100% sure, but I think this notation was originaly created by grep and later implemented by YACC. As a result, it is a defacto standard. I need to...
Devin Cook
devindcook
Offline Send Email
Sep 12, 2004
8:39 am
658
Correction: The possible notation would be {Set a} = {&120} .. {&500} {Set b} = a .. z + A .. Z + 0 .. 9 not {Set a} = {&120} .. {&500} {Set b} = a .. z | A .....
Devin Cook
devindcook
Offline Send Email
Sep 12, 2004
10:21 am
659
I also favor Pascal-like notation for ranges, I think it is more readable and as a result more maintainable than standard regular expression's notation. BTW, I...
Vladimir Morozov
vmorozov72
Offline Send Email
Sep 13, 2004
3:08 am
660
More about codes for Unicode character classes: a) .Net Framework defines enumeration UnicodeCategory with integer codes 0..29 which can be used to encode...
Vladimir Morozov
vmorozov72
Offline Send Email
Sep 13, 2004
4:49 am
661
... Interesting. I'll have to take a better look at it. I should have a predefined character set for the Private Use Area in the Basic Multilingual Plane. ... ...
Devin Cook
devindcook
Offline Send Email
Sep 13, 2004
6:49 am
662
I don't see a way to access the parse tree from the Java GOLDParser engine. What am I missing? Thanks. Jeff...
jg_macallister
Offline Send Email
Sep 13, 2004
8:07 pm
Messages 633 - 662 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