-1
votes
1answer
21 views
Does this grammar allow scope nesting?
I'm only able to make functions inside the global scope. Scope nesting means being able make functions within functions, right? I'm not able to do that with this grammar. Is it possible?
/* …
0
votes
2answers
38 views
ANTLR grammar license
I'm planning to make an implementation of Lua for the DLR, and i would like to use the listed Lua 5.1 grammar here. However i can't see a license that it was released under, so can someone please …
0
votes
2answers
68 views
Does anyone recognise this unfamiliar notation?
I have a question from a test in a Programming Languages class that is confusing me.
Give a context-free grammar to generate the following language
L = { aibjck | 0 <= i <= j <= i + k }
I …
0
votes
1answer
20 views
ANTLR “Cannot launch the debugger. Time-out waiting to connect to the remote parser.”
One of my ANTLR grammars running in AntlrWorks throws:
“Cannot launch the debugger. Time-out waiting to connect to the remote parser.”
In the past this message usxually goes away but this one is …
4
votes
6answers
163 views
C++ create a parser
What's the best way to create a parser in C++ from a file with grammar?
0
votes
1answer
41 views
AS3 Grammar: Most accurate
I'm looking for an accurate AS3 grammar (format in not an issue, but I presume ANTLR will feature the most) to use for a practice grammar I'm making.
What is the most accurate grammar available for …
0
votes
2answers
191 views
ANTLR Grammar for expressions
I'm trying to implement a expression handling grammar (that deals with nested parenthesis and stuff). I have the following so far, but they can't deal with some cases (successful/failure cases appear …
0
votes
2answers
32 views
Question about building a symbol table with a yacc parser
If my yacc parser encounters the following code:
int foo(int a, int b)
should it add int a and int b as attributes of foo? The way I have it now, it enters a and b as separate table entries.
1
vote
1answer
17 views
Tips on Using Bison --graph=[file] on Linux
Recently (about a month ago) I was trying to introduce new constructs to my company's in-house extension language, and struggling with a couple of reduce-reduce errors. While I eventually solved this …
0
votes
4answers
34 views
Why does my yacc program not recognize function declarations?
I think my program should be able to recognize the following as a function declaration
int fn(int i) { int n; return; }
but it doesn't.
Here's the relevant part of my yacc file
program : …
2
votes
5answers
106 views
Grammars, Scala Parsing Combinators and Orderless Sets
I'm writing an application that will take in various "command" strings. I've been looking at the Scala combinator library to tokenize the commands. I find in a lot of cases I want to say: "These …
1
vote
2answers
38 views
Generating an XML path from a set of attributes
I have a set of XML documents that all share the same schema. (They're SAPI grammars with semantic tags, if that matters.) I can use the documents to match text strings, returning a set of …
16
votes
47answers
4k views
Is there a human readable programming language?
I mean, is there a coded language with human style coding?
For example:
Create an object called MyVar and initialize it to 10;
Take MyVar and call MyMethod() with parameters. . .
I know it's not so …
0
votes
1answer
34 views
Is there a shift/reduce error in this yacc code?
I'm getting a message from yacc saying that there is a shift/reduce conflict. I think it's coming from this part of the yacc file.
statement : expression_stmt
| compound_stmt
| …
0
votes
2answers
94 views
What’s wrong with my grammar
I try to input the following into my yacc parser:
int main(void)
{
return;
}
It looks valid to me according to what's defined in the yacc file, but I get a "syntax error" message after the return. …
