Tagged Questions

9
votes
2answers
258 views

Folding flatMap/bind over a list of functions (a.k.a. Name That Combinator!)

In the process of writing a simple RPN calculator, I have the following type aliases: type Stack = List[Double] type Operation = Stack => Option[Stack] ... and I have written a curious-looking ...
6
votes
1answer
325 views

Scala: Can I nudge a combinator parser to be locally greedy?

Suppose I have an ambiguous language expressed in combinator parser. Is there a way to make certain expressions locally greedy? Here's an example of what I mean. import ...
5
votes
1answer
1k views

Scala combinator parsers - distinguish between number strings and variable strings

I'm doing Cay Horstmann's combinator parser exercises, I wonder about the best way to distinguish between strings that represent numbers and strings that represent variables in a match statement: def ...
3
votes
3answers
325 views

Backtracking in scala parser combinators?

It seems like scala's parser combinators don't backtrack. I have a grammar (see bottom) which can't parse the following "stmt" correctly: copy in to out . That should be easy to parse with ...
3
votes
1answer
1k views

parser combinator: how to terminate repetition on keyword

I'm trying to figure out how to terminate a repetition of words using a keyword. An example: class CAQueryLanguage extends JavaTokenParsers { def expression = ("START" ~ words ~ "END") ^^ { x ...
1
vote
2answers
256 views

returning meaningful error messages from a parser written with Scala Parser Combinators

I try to write a parser in scala using Parser Combinators. If I match recursively, def body: Parser[Body] = ("begin" ~> statementList ) ^^ { case s => { new Body(s); } } def ...
0
votes
1answer
86 views

How to encode a constraint on the format of String values

As I frequently observe and how I often implement a name attribute, is to simply model it as String. What now, if the name has to follow a certain syntax, i.e. format? In Java I probably would define ...