Tagged Questions
GOLD is a parsing system targeting multiple programming language.
6
votes
2answers
438 views
VBScript Partial Parser
I am trying to create a VBScript parser. I was wondering what is the best way to go about it. I have researched and researched. The most popular way seems to be going for something like Gold Parser or ...
2
votes
1answer
109 views
Extracting keywords from GOLD-Parser CGT-File
i have defined a grammar with many rules, that uses many keywords. imagine it like this (just with more of these rules and more keywords):
<keyword> ::= 'public' | 'protected' | 'private'
the ...
2
votes
3answers
314 views
BNF grammar + Gold LALR parser, failing to distinguish special case NewLine from Whitespace
I want to consider whitespaces and newlines as normal whitespaces.
I want to distinguish newlines from other whitespaces moreover to allow special case.
First attempt to write a compliant grammar ...
1
vote
1answer
716 views
GOLD Parse, how do you actually implement your code?
I am not quite sure how to implement my the code after generating the skeleton. I didnt use const only, i do have main files and i tried several c(++) versions along with c# and still i dont ...
0
votes
0answers
40 views
How can I improve my grammar for BibTex texts
I want to parse BibTex items with GOLD-Parser. So far I've got this:
{Value Chars 1} = {Printable} - ["] + {Whitespace}
Value = ( '{' {Value Chars 1}* '}' | '{"' {Value Chars 1}* '"}' | '"' {Value ...
0
votes
1answer
122 views
GOLD Parser : ANSI-C grammar not actually parsing ANSI-C?
I'm trying to test the ANSI-C grammar provided on the GOLD Parser website.
I can't seem to even completly parse the smallest of the C file.
Example:
int test_inc1(void)
{
int t;
t = 2 + 2;
...
0
votes
2answers
96 views
Which Parser can parse poker-log files, which one is the easiest and best? (Need alternative for Spirit. Gold Parser, ANTLR or …) [closed]
I have to parse some pokerhandhistory-files, log files.
The content is like this:
Theplayername bets $100
All i need is the name, the action(as token) and the amount.
The problem is that the name ...
0
votes
1answer
252 views
Can I improve this GOLD Parser Grammar?
I have to parse a file that looks like this:
versioninfo
{
"editorversion" "400"
"editorbuild" "4715"
}
visgroups
{
}
world
{
"id" "1"
"mapversion" "525"
"classname" "worldspawn"
...
0
votes
2answers
304 views
Bug in Gold Parser? LALR
Here is a piece of my bnf grammer.
//this works
<ter-stmnt> ::= <rval> '?' <rval> ':' <rval>
//this gets an error
<ter-stmnt> ::= <bool-val> '?' <rval> ':' ...