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...
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...
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@...
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...
... [...] 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...
... 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...
... 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@...
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...
... wrote: [...] ... [...] Developers simply regret to spend their time on formalizing by declaring the languages to be difficulty to formalize. In case of the...
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...
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@...
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...
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...
... 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...
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...
... [...] ... [...] ... 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 ...
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@...
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 ...
... wrote: [...] ... Not formalizing hides the flaws of the design. At the same time declaring the language difficult to formalize shields the flaws from ...
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...
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,...
... [...] ... 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...
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:...
... 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...
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...
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@...
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...