module Funkr # Should not be used directly module Matchers class SafeMatcher def initialize(match) @const, *@data = match @runner = nil @undefined = self.class.constructs.clone end def self.build_matchers(constructs) @constructs = constructs constructs.each do |c| name, *_ = c define_method(name) do |&b| @undefined.delete(name) if @const == name then @runner = b end end end end def self.constructs; @constructs; end def self.match_with(normal_form) # &block m = self.new(normal_form) yield m m.run_match end def run_match if @undefined.any? then raise "Incomplete match, missing : #{@undefined.join(" ")}" end @runner.call(*@data) end end end end