aboutsummaryrefslogtreecommitdiff
path: root/src/parcom.cr
diff options
context:
space:
mode:
authorMatthew Hall <hallmatthew314@gmail.com>2023-03-11 21:13:01 +1300
committerMatthew Hall <hallmatthew314@gmail.com>2023-03-11 21:13:01 +1300
commit9f3c396bc54ca7b7e5201a79956ae255bc6db548 (patch)
tree3a5dfbe3c9df90528fc85170faa5e7cd4d22b5a5 /src/parcom.cr
parent3b61b8ae6dab474b8ae3e32532292a0e9d8597bb (diff)
Documentation for Satisfy
Diffstat (limited to 'src/parcom.cr')
-rw-r--r--src/parcom.cr14
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 }