From 9f3c396bc54ca7b7e5201a79956ae255bc6db548 Mon Sep 17 00:00:00 2001 From: Matthew Hall Date: Sat, 11 Mar 2023 21:13:01 +1300 Subject: Documentation for Satisfy --- src/parcom.cr | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'src/parcom.cr') diff --git a/src/parcom.cr b/src/parcom.cr index c1d9791..16abe22 100644 --- a/src/parcom.cr +++ b/src/parcom.cr @@ -81,20 +81,6 @@ module Parcom end end - class Satisfy(T) < Parser(T, T) - @p : Assert(T, T) - - def initialize(&block : T -> Bool) - @p = AnyToken(T).new.assert(&block) - end - - def parse(tokens : Tokens(T)) : Result(T, T) - @p.parse(tokens) - rescue ex : ParserFail - raise ParserFail.new("Satisfy: #{ex.message}") - end - end - class Token(T) < Parser(T, T) def initialize(@expected : T) @p = Satisfy(T).new { |x| x == @expected } -- cgit v1.2.1