diff options
Diffstat (limited to 'src/parcom.cr')
| -rw-r--r-- | src/parcom.cr | 14 |
1 files changed, 0 insertions, 14 deletions
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 } |
