# File rparsec/parser.rb, line 365 def infixn(op) bind do |v1| bin = Parsers.sequence(op, self) do |f, v2| f.call(v1,v2) end bin | value(v1) end end