Tagged Questions

6
votes
1answer
152 views

How to change code using Scala Parser Combinators to take operator precedence into account?

Consider this part of the grammar: def expression = SimpleExpression ~ opt(relation ~ SimpleExpression) def relation = "=" | "#" | "<=" | "<" | ">=" | ">" | "IN" | "IS" def ...
3
votes
1answer
206 views

using precedence parser not only for expressions?

Is it possible to use some kind of operator-precedence parser or shunting-yard algorithm for simple programming language? For example, if this language have only expressions, functions and ...
3
votes
9answers
1k views

How do I parenthesize an expression programmatically?

I have an idea for a simple program to make that will help me with operator precedence in languages like C. The most difficult part of this is parenthesizing the expression. For example, I want this: ...
2
votes
1answer
22 views

Parser implementations comparison: correctness confirmation and (perhaps) optimization

I've implemented two expression parsers, in recursive descent and operator precedence. They're implemented in Object Pascal. Here's the recursive descent: function ParseFactor: PNode; var Temp: ...
2
votes
5answers
70 views

Logical OR vs Logical AND: which should be more binding?

I'm writing a small parser, which will have an OR operator and an AND operator. When you see a series of ORs and ANDs, which do you expect will be more binding? Given the expression a & b | c, do ...
0
votes
3answers
204 views

How would I implement parsing using operator precedence?

I want to implement parsing using operator precedence. I have implemented +, -, *, and /. How would I implement rest with out using any grammar? This is a college project and yacc or bison are not ...