# File lib/liquid/tags/case.rb, line 21 def unknown_tag(tag, markup, tokens) @nodelist = [] case tag when 'when'.freeze record_when_condition(markup) when 'else'.freeze record_else_condition(markup) else super end end