Hello everyone, A number of users are having trouble with the GUI library that is used to display the graphic buttons and autoresize the forms. This is...
Hi. I have a trouble with grammar. I have part of grammar definition for sql select statement: !------------ Grammar "Name" = 'SQL SELECT' "Version"...
ken_nikl
ken_nikl@...
May 5, 2004 6:31 am
441
Ok... I need to define a grammar that does the following. I need to parse certain custom tag types out of an html file while maintaining the remaining text...
Two ways: 1) You can use the new virtual terminals and let a "stupid parser" eat all of the text to the point where you want to start parsing, and all the text...
... HTMLChar set ... characters. ... I built a grammar around this, but something else must be wrong. I'm getting an EOF expected after the second character....
Before I start considering rolling my own version of TestGrammar.exe I thought I might spark up some discussion... The problem I'm looking at is that...
I've just uploaded to the SourceForge site (golddotnet.sf.net) my latest GOLD-oriented utility app, GUnit. This is an idea I've had for some time, so it's...
... Excellent! I look forward seeing it! ... Very true. ... Excellent idea. When I release a new version of the testgrammar program, the output will be sent to...
... The Standard Out ability can be recaptured by using a batch file. For instance, it can contain: echo off testgrammar -trim %1 %2 %3 print %3 << The thing...
Take a random example: ABCDEH What do you think it is, Hex or Id? To the computer it could be either a HexLiteral3 or an Id, and when it has such a conflict...
The definition used for HexLiteral3 can accept a string that can also be accepted by the ID definition. For instance, assume you have the following text: Abh ...
Hello everyone, I've put togather a simple ZIP file containing a beta of version 2.2.1 of the Builder. The main goal of this version is to correct the "button...
It is an example for ASM microcontroller Microchip Example of an initial code: INDF EQU H'0000' TMR0 EQU H'0001' PCL EQU H'0002' STATUS EQU...
"Roman Bondarenko"
bondlab@...
May 11, 2004 12:48 pm
455
Hi List, I am writing a skeleton for wxGoldParser. An engine based upon the Alexande Rai engine for wxWidgets. Now when I want to generate case statements for...
I see that yahoo groups truncated my spaces, what I actually get is: case SomeLabel_Symbol_Thing ____________________________________ : Where the ___ is...
Hi all, I am new in the use of the Gold Parser Builder and I would like to get some advice to speed up my experience with this great parser. I am trying to get...
In general, the key to Reduce-Reduce and Shift-Reduce issues is in understanding where your grammar has ambiguity. The parsers expect that for any input there...
But in SQL syntax there are lots of cases in which a nullable or an optional clause is necessary. Does anybody know a workaround so the syntax is properly...
... Thanks Devin, Small question / comment. When you are looking at the skeleton code generator, will it be possible to output more then files in the same ...
... Thanks Devin, Small question / comment. When you are looking at the skeleton code generator, will it be possible to output more then files in the same ...
... Thanks Devin, Small question / comment. When you are looking at the skeleton code generator, will it be possible to output more then files in the same ...
Instead of putting multiple skeletons in one file, you can write multiple skeleton files and then use a batch file to run the command line skeleton generator. ...
I need to parse real numbers (in notation {digit}+ '.' {digit}+) and "tho dots" terminal ('..') - for using pascal-style array declaration. When I tried to...
fj128
fj128@...
May 19, 2004 11:58 pm
466
wxGoldParser is an engine for wxWidgets C++. It can run cross platform (makefiles for linux included) on Windows, Linux, Solaris, MacOS, etc. wxGoldParser can...
I need assistance in defining a grammar that requires a single space or a single character at the start of every statement. I am having trouble defining a...
The problem is that it isn't context-free for the DFA. If you want automatic handling of whitespace, what is the difference between a token of "normal" spaces...