Class: Sass::Tree::PropNode

Inherits:
Object
  • Object
show all
Defined in:
lib/scss_lint/sass/tree.rb

Instance Method Summary collapse

Instance Method Details

#childrenObject



121
122
123
124
125
# File 'lib/scss_lint/sass/tree.rb', line 121

def children
  # TODO: fix custom properties
  return [] if custom_property?
  concat_expr_lists super, extract_script_nodes(name), add_line_number(value)
end