darcsden :: alex -> parby -> patch

a parser combinators library for ruby

patch

changes

  • lib/parby.rb :: line 20

        def run &block
    
        def parse &block
    
  • lib/parby.rb :: line 47

        parser.run &block
    
        parser.parse &block
    
  • test/test.rb :: line 35

        failure = target.run { try { string "fou" } }
    
        failure = target.parse { try { string "fou" } }
    
  • test/test.rb :: line 39

        success = target.run { try { string "foo" } }
    
        success = target.parse { try { string "foo" } }