This is a great engine but you have bugs in your positional calculations. The bugs shows up when you overrun the 4K buffer. You are doing something funky...
Thank you for reporting this issue. I will have a look at the code to see how it can be fixed. Thank you, Vlad ... You ... is ... are ... approaching...
Are you using the Calitha engine?, and have you included the namespaces such as com.calitha.GoldParser ? Lots of engines name their dll's GoldParser.dll, so...
Hello all of you!! Gold Parser represents all the c# element's in the tree like sons and it is not correct. For instance, if I parse the next simple code: ...
Here is one of the annoying new user questions that everyone hates. I apologize in advance.... I got the GOLD Parser builder downloaded and installed. Created...
Each rule has a different symbol index. while in the grammar you can write <ARule> ::= A ... it's actually two rules, they each have their own index. The...
it's reducing one as a recursive production, which can contain many other productions therein. It's only visually deceiving, it's not actually wrong. Gold is...
Sorry, I don't understand very well your answer… My question is simple: If I parse the next code: Using System.Windows.Form; Namespace Name{} In C#.cs, when...
First off, thanks for the answer and I'm sorry that I have to follow up but again, as I must be missing something. In the reduction tree print function I...
Hello, CalithaLib.dll and GoldParserEngine.dll libraries are free distribution?. If I have a project which isn't free distribution, Can I use these libraries?....
I answered your question. If it's not clear enough, I don't know what else to say. You'll have to read the dragon book. I explained it, but it appears there is...
Calitha is distributed under the "Freeware License agreement, Open Source", as specified at : http://www.devincook.com/goldparser/about/license.htm (and...
Has anyone had much experience with introducing virtual terminals in the .NET engines during file read/dfa parsing? I'm attempting to implement a indent-based...
Hey Devin, just out of curiosity have you had any progress on your port/rewrite to a modern .NET language of the builder? A laptop I'm using is running Ubuntu...
Sorry about the huge delay! I finished converting the core code to VB.Net last month, but I haven't been able to work on it – let alone keep up with the...
Devin Cook
GOLD-Admin@...
Feb 6, 2008 7:08 am
3287
Each rule has an unique index - which you can look at when a reduction occurs or the tree is complete. You can also replace the default instance of the rule...
Devin Cook
GOLD-Admin@...
Feb 6, 2008 7:22 am
3288
The grammar is probably not compliant with the most recent version of C#. The problem can be fixed my modifying the grammar to accept the new language ...
Devin Cook
GOLD-Admin@...
Feb 6, 2008 7:22 am
3289
Hello!!, When I parse the next lines of javaˇ¦s code, gold parser shows me an error: These are: Import static javapack.exception.ErrorInfo.*; „ł Exactly...
The grammar needs to be updated. What is the current version of Java's syntax? - Devin _____ From: GOLDParser@yahoogroups.com...
Devin Cook
GOLD-Admin@...
Feb 13, 2008 3:37 pm
3292
I will be out of the office starting 09-02-2008 and will not return until 18-02-2008. <FONT SIZE=1 FACE="Arial">_______________ Vi goer opmaerksom paa, at...
Jens Linneberg Rasmus...
jensra@...
Feb 13, 2008 5:06 pm
3293
Hello!!, When I parse the next lines of javaˇ¦s code, gold parser shows me an error: These are: - new class [] --> Exactly in "[]" - public @interface...
Hello Devin, The current version of Java's syntax is: "Name" = 'LALR(1) Java nonunicode grammar' "Version" = '1.0 alpha 110' "Author" = 'Dmitry Gazko' ...
I'm writing (or trying to write) a JavaScript interpreter. I've based the framework on the Adrian Moore's Simple Interpreter example in VB.NET, but I'm finding...
Hello!!, I have some serious problems with generics parts. For instance, its possible to call static methods on generic types: if (a<b>.SomeMethod()) this...
Hello unkown hero, take a look here: _http://tech.groups.yahoo.com/group/GOLDParser/message/2717_ (http://tech.groups.yahoo.com/group/GOLDParser/message/2717) ...
Hello, the "Start Symbol" must be already defined in the Grammar, but I need a possibility to change that "Start Symbol" in the Engine dynamically. Is that...