class Haml::Util::StaticConditionalContext

def method_missing(name, *args, &block)

Returns:
  • (Boolean) -

Parameters:
  • name (Symbol) -- The name of the variable
def method_missing(name, *args, &block)
  super unless args.empty? && block.nil?
  @set.include?(name)
end