1
vote
2answers
34 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, returnin …
0
votes
2answers
89 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" messag …
1
vote
1answer
26 views
How to return literals from flex to yacc?
In my yacc file I have things like the following:
var_declaration : type_specifier ID ';'
| type_specifier ID '[' NUM ']' ';' ;
type_specifier : INT | VOID ;
ID …
0
votes
1answer
27 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
| compoun …
4
votes
11answers
330 views
Why do a lot of programming languages put the type *after* the variable name?
I just came across this question in the Go FAQ, and it reminded me of something that's been bugging me for a while. Unfortunately, I don't really see what the answer is getting at …
-1
votes
0answers
37 views
Could you give me a correctly formatted program example for this grammar? [closed]
The lex file:
/* C-Minus BNF Grammar */
%{
#include "parser.h"
#include <string.h>
%}
%union
{
int intval;
struct symtab *symp;
}
%token ELSE
%token IF
%token INT
…
0
votes
2answers
14 views
The program I made with flex/yacc doesn’t always recognize identifiers
I made a program that is supposed to recognize a simple grammar. When I input what I think is supposed to be a valid statement, I get an error. Specifically, if I start out with …
0
votes
2answers
23 views
Why do I get a syntax error in my program made with flex and yacc?
I made a program that is supposed to recognize a simple grammar. When I input what I think is supposed to be a valid statement, I get an error. Specifically, if I type
int a;
i …
3
votes
5answers
123 views
Regexp to exclude 101 and 110.
What is a regexp that accepts everything over the language {0,1} but has no substring 110 or 101?
Accept:
111111
000011111
100001000001001
010
1
Reject:
100110
010100
123
…
1
vote
4answers
99 views
What’s the matter with this Grammar?
grammar Test;
IDHEAD: ('a'..'z' | 'A'..'Z' | '_');
IDTAIL: (IDHEAD | '0'..'9');
ID: (IDHEAD IDTAIL*);
fragment
TYPE: ('text' | 'number' | 'bool');
define: 'define' ID 'as' …
3
votes
2answers
103 views
Left Recursion in Grammar Results in Conflicts
Throughout a Bison grammar I am using right recursion, and I have read that left recursion is better because it doesn't have to build the whole stack first.
However, when I try to …
0
votes
1answer
39 views
Tolerating malformed statements with ANTLR (e.g., for code-completion)
I have an ANTLR grammar for a simple DSL, and everything works swimmingly when there are no syntax errors. Now, however, I need to support an auto-completion mechanism, where I ne …
2
votes
3answers
75 views
Boost spirit and forward declarations issues
Could someone please give me some advice/ideas about how to deal with the situations when it's needed to have a look at further declarations to be able to make correct semantic act …
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. . .
…
0
votes
3answers
77 views
How to determine the FIRST set of E in this grammar ?
I wonder how to determine the FIRST set of E with grammar:
E -> XYE | e
X -> x
Y -> y
Can anyone give me some direction?
