This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package jp.segfault.scala.util | |
import scala.util.parsing.combinator._ | |
/** | |
* Parser combinator for Operator-precedence parser(http://en.wikipedia.org/wiki/Operator-precedence_parser). | |
*/ | |
trait OperatorPrecedenceParsers extends Parsers { | |
trait Op[+T,U] { |