# File lib/rule_engine.rb, line 39
  def call *args
    @depth += 1
    result = @method.call *args
    @depth -= 1
    result
  end