Thanks for your reply. I took my Visual Parse++ Grammar: %expression Main '[a-zA-Z0-9]+' word; ' ' space; '<[iI]>' italics_on; '</[iI]>' italics_off; '.'...
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. ...
... 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...
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...
... 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...
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. ...
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...
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...
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 ...
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...
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...
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...