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@...
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...
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...
... Back references are not expressible in a Context-Free Grammar. (Technically they are not expressible in a true regular expression either, but most extended...
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@...
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@...
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@...
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, 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...
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)...
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)...
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...
I have already created a Skeleton Program using GOLDParser, so I have already created a Scanner and a Parser. My problem is that I want to integrate the...
Hi all, I'm new to Gold Parser and having a problem with a shift-reduce error that I can't seem to get rid of... I'm trying to make a simple grammar that...
... [...] Just click the line of the log containing the message above. This will lead you to the LALR-state containing the conflict. Then click on the tab...
... wrote: [...] ... [...] I took a look at your grammar and the reason for your shift-reduce conflict is that there are two productions that can lead to a ...
What's new with you and the Gold Parsing System? It seems like development has slowed down, or maybe I just haven't been paying attention. What are your...
Devin, I've been experimenting with creating templates for the engine I'm building, and have found a (very minor) change I'd like to see. For each %XXX% that...
Hi, This may seem like a noob question, but i just cannot figure it out. so i came here for some help. I used the 'Simple Interpreter 3.0.0' source code from...
... As you can tell I'm new to Gold and parsers in general. Can someone point me in the direction of a method of creating an AST from my input strings using...
... OK thanks! Now with your help I have a grammar that works properly, but I'm having a little difficulty understanding how to grab the results as I want...
Dear all, I just found GOLDPARSER and I believe this program is great. I used LEX and YACC before. Are there any useful example how to write my own interpreter...
Hi All, I stumbled upon the "GOLD" project after looking for parser generators that can use predefined Backus-Naur terms for generation and provided access to ...
Hi My guess is that your grammar is ambiguous and thire is (big) chance that this kind of parsers cannot handle them. You can try (hard) to reconvert the ...
... My opinion is, that it is wrong, to start a first parser-project using GOLD, lexx/yacc or any other tool for grammar development. I believe that being able...