Recursive ascent parser: Difference between revisions

Content deleted Content added
m Task 70: Update syntaxhighlight tags - remove use of deprecated <source> tags
Line 35:
The following is a [[Scala (programming language)|Scala]] implementation of a recursive ascent parser based on the above grammar:
 
<sourcesyntaxhighlight lang="scala">
object ExprParser {
private type Result = (NonTerminal, Int)
Line 302:
}
}
</syntaxhighlight>
</source>
 
==See also==