Is Scalas/Haskells parser combinators sufficient? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T01:44:32Z http://stackoverflow.com/feeds/question/489783 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/489783/is-scalas-haskells-parser-combinators-sufficient 4 Is Scalas/Haskells parser combinators sufficient? DanielSwe 2009-01-28T22:51:28Z 2009-07-08T21:58:58Z <p>I'm wondering if Scalas/Haskells parser combinators are sufficient for parsing a programming language. More specifically the language MiniJava. I'm currently reading compiller construction and jflex and java cup is quite painful to work with so I'm wondering if I could/should use parser combinators instead. The MiniJava syntax is very small. MiniJavas BNF: <a href="http://www.cambridge.org/us/features/052182060X/grammar.html" rel="nofollow">http://www.cambridge.org/us/features/052182060X/grammar.html</a></p> http://stackoverflow.com/questions/489783/is-scalas-haskells-parser-combinators-sufficient/489838#489838 0 Answer by Jay Kominek for Is Scalas/Haskells parser combinators sufficient? Jay Kominek 2009-01-28T23:05:07Z 2009-01-28T23:05:07Z <p>I haven't dealt with the Scala or Haskell parser combinator libraries, but it looks like the grammar should be fine.</p> http://stackoverflow.com/questions/489783/is-scalas-haskells-parser-combinators-sufficient/489839#489839 1 Answer by Fabian Steeg for Is Scalas/Haskells parser combinators sufficient? Fabian Steeg 2009-01-28T23:07:31Z 2009-01-28T23:07:31Z <p><a href="http://www.artima.com/shop/programming_in_scala" rel="nofollow">Programming in Scala</a> (p. 647) says:</p> <blockquote> <p>It [Scala's parser combinator framework] is much easier to understand and to adapt than a parser generator, and the difference in speed would often not matter in practice, unless you want to parse very large inputs.</p> </blockquote> <p>As I would not classify source code as <em>very large input</em> (ideally), it should be sufficient.</p> http://stackoverflow.com/questions/489783/is-scalas-haskells-parser-combinators-sufficient/490256#490256 10 Answer by ephemient for Is Scalas/Haskells parser combinators sufficient? ephemient 2009-01-29T02:06:58Z 2009-01-29T02:06:58Z <p>I've never used Scala, but the existence of a definitive BNF makes this easy.</p> <p>Trivially translated into Haskell's <a href="http://legacy.cs.uu.nl/daan/parsec.html" rel="nofollow">Text.ParserCombinators.Parsec</a>:</p> <pre><code>goal = do c &lt;- mainClass cs &lt;- many classDeclaration eof return $ c:cs mainClass = do token "class" name &lt;- identifier ... </code></pre> <p>etc. The <a href="http://www.cs.helsinki.fi/u/ekarttun/PArrows/" rel="nofollow">PArrows</a> translation is pretty trivial too. You'll probably find it easier to have a distinct lexing phase before the parser, but you can do without too.</p> http://stackoverflow.com/questions/489783/is-scalas-haskells-parser-combinators-sufficient/490926#490926 5 Answer by mattiast for Is Scalas/Haskells parser combinators sufficient? mattiast 2009-01-29T08:50:27Z 2009-01-29T08:50:27Z <p>At least Parsec has built-in lexer for Java-like languages:</p> <pre><code>lexer = makeTokenParser javaStyle </code></pre> <p>You have to define the reserved words yourself.</p> http://stackoverflow.com/questions/489783/is-scalas-haskells-parser-combinators-sufficient/493366#493366 4 Answer by Germán for Is Scalas/Haskells parser combinators sufficient? Germán 2009-01-29T20:52:52Z 2009-01-29T20:52:52Z <p>I'm using Scala's parser combinators to parse PL/SQL code, it works like a charm. </p> http://stackoverflow.com/questions/489783/is-scalas-haskells-parser-combinators-sufficient/1100753#1100753 0 Answer by Daniel for Is Scalas/Haskells parser combinators sufficient? Daniel 2009-07-08T21:58:58Z 2009-07-08T21:58:58Z <p>Scala's parser is a backtracking parser, so it can deal with pretty much any BNF or EBNF. It also means, though, that there are edge cases where input can be painfully slow to be read.</p> <p>If the grammar can be changed into an <a href="http://en.wikipedia.org/wiki/LL%5Fparser" rel="nofollow">LL(1) grammar</a>, you can use the ~! operator to keep backtracking to a minimum.</p> <p>The grammar probably CAN be turned into LL(1), but, as written, it is not. See, for instance, that Expression and Statement have First/First conflicts (look this up at the end of the linked article).</p> <p>Anyway, for an academic project, it is enough. For real life compiler stuff, you'll need faster parsers.</p>