In functional programming, a parser combinator is a higher-order function which accepts several parsers as input and returns a new parser as its output.

learn more… | top users | synonyms

0
votes
1answer
47 views

Scala external DSL - infinite loop caused by alternative repetitions

I am trying to build a simple external DSL in Scala that would be able to parse strings like: value = "john${tom}peter${greg}${sue}meg" In general, a substring within quotation marks contains ...
0
votes
1answer
54 views

Trouble with scala.util.parsing.combinator.ImplicitConversions

I have the following code: import scala.util.parsing.combinator._ import scala.language.implicitConversions object Parser1 extends RegexParsers with ImplicitConversions with PackratParsers { lazy ...
2
votes
1answer
62 views

Scala parsing left-associative subscript operator

I've mastered this syntax for building a left-associative tree for infix operators: term * ( "+" ^^^ { (a:Expr, b:Expr) => new FunctionCall(plus, a::b::Nil) } | "-" ^^^ { (a:Expr, ...
1
vote
2answers
63 views

I don't understand how to use the lexeme function

From Text.Parsec.Token: lexeme p = do { x <- p; whiteSpace; return x } It appears that lexeme takes a parser p and delivers a parser that has the same behavior as p, except that it also skips ...
2
votes
1answer
52 views

Scala Parser Combinator compilation issue: failing to match multiple variables in case

I am learning how to use the Scala Parser Combinators, which by the way are lovely to work with. Unfortunately I am getting a compilation error. I have read, and recreated the worked examples from: ...
0
votes
1answer
16 views

PEG Parsers: are “optional” and “one-or-more” rules necessary?

The Wikipedia article for PEG parsers defines the following combinators: 2.Given any existing parsing expressions e, e1, and e2, a new parsing expression can be constructed using the following ...
0
votes
1answer
47 views

Constructing a type check parser with parser combinators

Currently, I'm trying to parse a Reader[Token] in Scala. Therefore, I'd like to check during the parsing steps if a Token is element of a specific class (e.g. AToken). I can do that easily with the ...
0
votes
1answer
91 views

Parser Combinators - Simple grammar

I am trying to use parser combinators in Scala on a simple grammar that I have copied from a book. When I run the following code it stops immediately after the first token has been parsed with the ...
0
votes
0answers
49 views

How to get left assoc operators with scala combinators?

I've tried /* inside RegexParser class */ def exp : Parser[Exp] = term~addop_chain ^^ {case l~ThenAdd(optype,r) => AritOp(l,optype,r)} def addop_chain : Parser[Exp] = ...
2
votes
2answers
117 views

What would be a good approach to generate native code from an interpreter written with scala parser combinators?

I already have an interpreter for my language. It is implemented with: parser -> scala parser combinators; AST -> scala case classes; evaluator -> scala pattern matching. Now I want to compile AST ...
1
vote
1answer
85 views

How to combine parsers with different types of Elem

I'm trying to create a parser that combines Regex parsers and a custom parser I have. I've looked at Scala: How to combine parser combinators from different objects, but that question and answers deal ...
2
votes
1answer
89 views

Accessing position information in a scala combinatorparser kills performance

I wrote a new combinator for my parser in scala. Its a variation of the ^^ combinator, which passes position information on. But accessing the position information of the input element really cost ...
10
votes
1answer
132 views

Is there any suitable way to generate a [jpg, png etc.] syntax diagram(and/or AST) directly from Scala Parser Combinators?

The only ways I am aware of, aren't "direct": converting to ANTLR format and using its own visualizer VISUALLANGLAB, which it seems to require an entire mouse-clicks "rewrite" implementing a ...
3
votes
0answers
56 views

Current state of javascript parser combinators

Are there any good parser combinator libraries available for javascript? I found a few after googling, but most are unmaintained. Thanks.
0
votes
2answers
104 views

How to embed Scala code inside a specially defined syntax?

I don't know if this info is relevant to the question, but I am learning Scala parser combinators. Using some examples (in this master thesis) I was able to write a simple functional (in the sense ...
1
vote
1answer
86 views

Scala parser combinator reduce/foldLeft

I'm trying to make the following, from a dynamically filled List: val primitives = "x" | "y" | "z" // what I want val primitives2 = List("x", "y", "z") // what I need to transform from I figured ...
1
vote
3answers
139 views

Better way for parser combinators in C?

I'm trying to bootstrap (a subset of) C from scratch, without using extra dependencies (parser generators, libraries, etc.). Also I want to make use of the idea of parser combinators, which is a ...
6
votes
1answer
178 views

Creating a recursive data structure using parser combinators in scala

I'm a beginner in scala, working on S99 to try to learn scala. One of the problems involves converting from a string to a tree data structure. I can do it "manually", by I also want to see how to do ...
2
votes
1answer
67 views

Differentiating ints and floats with Scala Combinator Parsers

I've been having an issue getting the scala combinator parsers (specifically the RegexParsers via JavaTokenParsers) deciding between ints and floats. I must be missing something really basic here, ...
1
vote
3answers
129 views

How to test if Scala combinator parser matches a string

I have a Scala combinator parser that handles comma-delimited lists of decimal numbers. object NumberListParser extends RegexParsers { def number: Parser[Double] = """\d+(\.\d*)?""".r ^^ ...
2
votes
1answer
98 views

How to restrict backtracking in a monad transformer parser combinator

tl;dr, How do I implement parsers whose backtracking can be restricted, where the parsers are monad transformer stacks? I haven't found any papers, blogs, or example implementations of this approach; ...
1
vote
2answers
91 views

Scala 2.9: Parsers subclass not recognizing “Elem” override?

I wrote a parser to act as a lexer. This lexer parses a file and returns a list of tokens, each of which is a case class or object that extends a common trait. I am now trying to write a parser for ...
4
votes
2answers
232 views

Parsing an indentation based language using scala parser combinators

Is there a convenient way to use Scala's parser combinators to parse languages where indentation is significant? (e.g. Python)
2
votes
1answer
253 views

Scala parser combinators and newline-delimited text

I am writing a Scala parser combinator grammar that reads newline-delimited word lists, where lists are separated by one or more blank lines. Given the following string: cat mouse horse apple orange ...
13
votes
1answer
278 views

Scala parser combinator, large file issue

I have written a parser as follows: class LogParser extends JavaTokenParsers { def invertedIndex: Parser[Array[Array[(Int, Int)]]] = { num ~> num ~> num ~> rep(postingsList) ^^ { ...
3
votes
1answer
123 views

Scala parser-combinators: how to invert matches?

Is it possible to invert matches with Scala parser combinators? I am trying to match lines with a parser that do not start with a set of keywords. I could do this with an annoying zero width negative ...
3
votes
1answer
207 views

Scala Parser Combinators: Efficiently Parse C-Style Comments

What is the best way to (efficiently) parse C-style multi-line comments (i.e., /* ... */) with Scala parser combinators? In a project that I'm involved in we parse a C-like programming language, and ...
2
votes
2answers
165 views

Step by step evaluation with parser combinator in scala

I'm just learning the Scala parser combinator library. I've experimented a working parser that parses some arithmetic expressions with an abstract syntax tree. So when I call phrase(expr)(tokens) ...
0
votes
2answers
118 views

Foiled by path-dependent types

I'm having trouble using, in one trait, a Parser returned from a method in another trait. The compiler complains of a type mismatch and it appears to me that the problem is due to the path-dependent ...
3
votes
1answer
160 views

Using Trifecta's layout parser

I'm experimenting with Trifecta for parsing a very simple functional language with Haskell-like layout syntax. I'm working off the Haddock docs and my experience with Parsec, because I couldn't find ...
0
votes
2answers
94 views

How to parse this structure: “name[arg,arg]” with scala combinator parsers?

I have several strings like these: name[arg,arg,arg] name[arg,arg] name[arg] name I wanted to parse it with scala combinator parsers, and this is the best that I managed to get: object ...
0
votes
3answers
130 views

How do I pass ParseResults to other methods?

void whatever() { // ... val parser = new MyParser val parse = parser.parse(input) if (parse successful) { semanticAnalysis(parse) } } void semanticAnalysis(parse: ...
1
vote
1answer
93 views

How to parse to a type in Scala

I'm trying to write a parser in Scala that gradually builds up a concrete type hierarchy. I started with: private def word = regex(new Regex("[a-zA-Z][a-zA-Z0-9-]*")) private def quicktoken: ...
2
votes
1answer
120 views

Scala parser gets stuck in infinite loop

I'm trying to write a simple parser in scala but when I add a repeated token Scala seems to get stuck in an infinite loop... object RewriteRuleParsers extends RegexParsers { private def space = ...
2
votes
1answer
431 views

Operator Precedence with Scala Parser Combinators

I am working on a Parsing logic that needs to take operator precedence into consideration. My needs are not too complex. To start with I need multiplication and division to take higher precedence than ...
1
vote
2answers
107 views

Discarding the remaining input using parser combinators

I just want to parse the following string up until the END token then ignore the rest: val input = """ 0) blah1 blah2 blah3 1) blah4 blah5 END blah6 """ Using object Pars extends RegexParsers { ...
1
vote
3answers
168 views

Using parser combinators to collate lines of text

I'm trying to parse a text file using parser combinators. I want to capture the index and text in a class called Example. Here's a test showing the form on an input file: object Test extends ParsComb ...
0
votes
1answer
162 views

Scala sentences parsing using parser-combinators

How to effectively parse (without too much of code cluttering) statements like below? Keywords/separators are placed within []. Manager, Delhi [for] The Company Pvt Ltd. [from] Jan, 2009 [to] Jan, ...
1
vote
2answers
200 views

Scala Map Parser

I'd like to build a Parser that can take a Map input and output a Case class. Right now I have some imperative style code that doesn't seem to take advantage of FP. I just can't see how to build a ...
2
votes
1answer
216 views

Parsing a string containing any chars

I'm trying to get following to work. So I have strings that are inside parentheses. The strings can contain any characters, and hence the string that I want to parse can also contain parentheses. I ...
2
votes
1answer
120 views

How can I ignore non-matching preceding text when using Scala's parser combinators?

I really like parser combinators but I'm not happy with the solution I've come up with to extract data when I don't care about the text before the relevant text. Consider this small parser to get ...
3
votes
1answer
232 views

FParsec Reactive Example

I'm hopeful that someone could potentially post an example of using FParsec where the data is based on some sort of incoming live stream. Some examples could be producing a result based on mouse ...
1
vote
1answer
114 views

parsing white spaces in front of `elem` method

I tried to parse an input of two Ints and some elements and the end: import scala.util.parsing.combinator.JavaTokenParsers class X extends JavaTokenParsers { lazy val elems = elem("wrong elem", ...
0
votes
2answers
132 views

FParsec identifiers vs keywords

For languages with keywords, some special trickery needs to happen to prevent for example "if" from being interpreted as an identifier and "ifSomeVariableName" from becoming keyword "if" followed by ...
4
votes
1answer
266 views

Parser Combinators: Does repsep allows back-tracking?

Consider example of the parser like this: object TestParser extends RegexParsers { override protected val whiteSpace = """[ \t]*""".r def eol = """(\r?\n)+""".r def item = ...
0
votes
1answer
157 views

Unable to parse a complex language with regex and Scala parser combinators

I'm trying to write a parser for a certain language as part of my research. Currently I have problems getting the following code to work in a way I want: private def _uw: Parser[UW] = _headword ~ ...
2
votes
0answers
110 views

Adding positioned to Lexical/StdLexical in Scala

I'm creating a Lexer in the vein of StdLexical with a few changes in terms of behavior (but for the purposes of my question, a demonstration of how to add it to StdLexical would be fine). I'm trying ...
2
votes
3answers
205 views

Differentiating logical from other infix operators

I'm trying to parse SQL search conditions and having trouble getting the parser to differentiate logical (AND, OR) from other infix operators. I'm parsing them as different nodes (perhaps that's ...
3
votes
2answers
157 views

scala combinator parser not backtracking as I would have thought…

I've been staring myself blind on this problem I have and I guess this will probably be a real stupid question. But I have to swallow my pride. I have this combinator parser that doesn't backtrack ...
2
votes
0answers
245 views

Scala parser combinators: retrieving the original string that the parser consumed

So i have a bunch of parsers like this: object MyParser extends RegexParsers{ override val skipWhitespace = false def blockLine = ((id ~ args) <~ ":") ~ ".*?".r ^^ { case (blockID ~ ...

1 2 3