class Sass::Tree::PropNode

def check!

def check!
  return unless @options[:property_syntax] && @options[:property_syntax] != @prop_syntax
  raise Sass::SyntaxError.new(
    "Illegal property syntax: can't use #{@prop_syntax} syntax when " +
    ":property_syntax => #{@options[:property_syntax].inspect} is set.")
end