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 2053 - 2084 of 3462   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2053
Ive added most of the c# features to my grammar now, however I have some serious problems with the 2.0 generics parts. for eaxample its possible to call static...
roggancompona
Offline Send Email
Jan 1, 2006
12:58 pm
2054
Hello everyone, The website was just updated with a new version of Vladimir Morozov's C# Engine and a new version of the Builder. The changes in the Builder...
devindcook
Offline
Jan 1, 2006
2:58 pm
2055
I'll take a look at the grammar, but I don't think I can get back to you for a couple of days. Do you need to use templates? Have a great day, - Devin Cook...
Devin Cook
GOLD-Admin@...
Send Email
Jan 1, 2006
2:58 pm
2056
No problems , its not for anything serious Im just experimenting with various things right now. ... since im just experimenting i cant say i do , but it would...
roggancompona
Offline Send Email
Jan 2, 2006
9:33 am
2057
... [...] I am always puzzled why you allow _questions_ but then always start to do the real work. I am waiting for the next tears on that grammer when it...
svv1999
Offline Send Email
Jan 2, 2006
11:09 am
2058
... 1) if( a < b, c > d).. if you have any experience with c# you should know that that is not a valid expression and is not accepted by the compiler nor by...
roggancompona
Offline Send Email
Jan 2, 2006
12:55 pm
2059
... In many cases, I just forward them to the documentation. However, in this case, the developer is attempting to write a C++ derivative. I began to write the...
Devin Cook
GOLD-Admin@...
Send Email
Jan 2, 2006
11:37 pm
2060
... in this ... began to ... quite ... completely ... I also tried to create C# grammar with GOLD and did not succeed. It would be interesting to see if the...
Vladimir Morozov
vmorozov72
Offline Send Email
Jan 3, 2006
7:08 am
2061
... wrote: [...] ... [...] Developers simply regret to spend their time on formalizing by declaring the languages to be difficulty to formalize. In case of the...
svv1999
Offline Send Email
Jan 3, 2006
11:24 am
2062
Hey all, Things have been going well on my project (using a gold grammar to create rules that can parse and validate various text files). I'm starting to come...
donsgood2
Offline Send Email
Jan 3, 2006
11:07 pm
2064
Vlad -- You wrote: I did some search on the Google and could not find LALR(1) C++ ... I believe the problem goes back to C, which was designed before parser ...
Carlos Christensen
christensenc@...
Send Email
Jan 4, 2006
12:00 am
2066
I can't help with much, but let me suggest to use IIF for the "return one of two values based on the truth of an expression", because that's what's used in...
J. Merrill
jamesvmerrill
Offline Send Email
Jan 4, 2006
3:58 am
2067
Hi, i agree with what you've said, having a proper if statement really eliminates the need for having a if statement that returns a value. So this is what i'm...
donsgood2
Offline Send Email
Jan 4, 2006
5:39 am
2068
This is what i have so far [its guesswork so its probably crude] <nl>     ::= NewLine <nl>          !One or more ... <nl Opt> ::= NewLine <nl...
donsgood2
Offline Send Email
Jan 4, 2006
6:07 am
2069
... Your grammar has pretty well defined syntax for expressions. What you need is to add a set of statements. So, your assignment rule is just one of the...
Vladimir Morozov
vmorozov72
Offline Send Email
Jan 4, 2006
6:17 am
2070
... wrote: [...] ... [...] Do you mean: http://www.devincook.com/goldparser/doc/meta-language/example-if-then- else.htm -manfred...
svv1999
Offline Send Email
Jan 4, 2006
6:33 am
2071
Carlos, ... parser ... my earlier ... You cannot believe that I spent yesterday couple of hours trying to find where I read this citation before. It ends the...
Vladimir Morozov
vmorozov72
Offline Send Email
Jan 4, 2006
7:19 am
2072
... [...] ... then- ... Yes, you are right: I did not notice that the page uses frames and copied the link from the top. Thank you, Vlad...
Vladimir Morozov
vmorozov72
Offline Send Email
Jan 4, 2006
7:22 am
2073
... [...] ... [...] ... Then the question is why is it hapenning? Why people do not want to formalize their language? I believe it is because the formal rules ...
Vladimir Morozov
vmorozov72
Offline Send Email
Jan 4, 2006
7:56 am
2074
what does these lines do? *lexeme = p.get_child_lexeme(0); p.set_lexeme(lexeme,0);* They are in the main(), from the Justin Holmes ANSI C engine. I delete them...
hugo
hugo@...
Send Email
Jan 4, 2006
11:17 am
2075
... wrote: [...] ... Languages describing grammars are tools for the description of a statical property of the targeted language. That property is the ...
svv1999
Offline Send Email
Jan 4, 2006
1:24 pm
2076
... wrote: [...] ... Not formalizing hides the flaws of the design. At the same time declaring the language difficult to formalize shields the flaws from ...
svv1999
Offline Send Email
Jan 4, 2006
1:54 pm
2077
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the GOLDParser group. File :...
GOLDParser@yahoogroup...
Send Email
Jan 4, 2006
2:00 pm
2078
Mono project has a complete and working C# grammar written in yacc (bison). Would not be easyer to use the goldparser's import function and adapt that work,...
Anderson Carli
andersoncarli
Offline Send Email
Jan 4, 2006
9:20 pm
2079
... [...] ... on ... rental a ... to ... I like your analogy :-) This VBScript example is an extreme, and most probably there is no reliable way to resolve it...
Vladimir Morozov
vmorozov72
Offline Send Email
Jan 5, 2006
6:15 am
2080
Hi, Can GOLD parser do these; that is, parse HTML and DTD files? If so, could someone show me a roadmap --i.e. where would I start. And a general question:...
adem
benadembaba
Offline Send Email
Jan 5, 2006
3:58 pm
2081
... There are many nuances to HTML, XML, DTD, and SGML (DTDs and pre-XHTML HTML are both specified by SGML; XML itself is a subset of SGML) parsing that you...
Max Battcher
world_maker
Offline Send Email
Jan 5, 2006
7:52 pm
2082
Thanks Vlad, i've managed to implement if statements and they work really well. I'm in the process of adding a while loop..which in itself is quite simple now...
donsgood2
Offline Send Email
Jan 6, 2006
5:23 am
2083
I want to parse a text line like this: [[9][8,6,5][7]]; I wrote the grammar bellow. The rule <Array> is both left and right recursive, is there any "better"...
hugo
hugo@...
Send Email
Jan 6, 2006
3:04 pm
2084
I'm using the "Calitha" parser in a C# project, and wondering if anyone else has solved the problem that the "Location" class is not accessible from the...
Moto Mike
linearmotomike
Offline Send Email
Jan 6, 2006
4:12 pm
Messages 2053 - 2084 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