# File lib/liquid/tags/case.rb, line 6
    def initialize(tag_name, markup, options)
      super
      @blocks = []

      if markup =~ Syntax
        @left = $1
      else
        raise SyntaxError.new(options[:locale].t("errors.syntax.case".freeze))
      end
    end