Tagged Questions

0
votes
2answers
30 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
14 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
33 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
102 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 …
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
92 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. …
-1
votes
0answers
38 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 %token RETURN %token …
0
votes
0answers
10 views

Are there any programs to help with reading the grammar in a yacc file?

I'm trying to figure out what legal statements I can make by looking at the grammar in a yacc file, but it's kind of hard. Are there any programs to make this sort of thing easier?
0
votes
2answers
15 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 an identifier, I …
1
vote
1answer
28 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, NUM, INT, and VOID …
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; int b; it doesn't …
1
vote
2answers
36 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 …
0
votes
1answer
50 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 need to get possible …
4
votes
11answers
342 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. It seems like …
3
votes
2answers
118 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 switch to left …

1 2 3 4 5 6 next
15 30 50 per page