Class: Sass::Tree::DirectiveNode

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

Instance Method Summary collapse

Instance Method Details

#childrenObject



58
59
60
61
62
63
64
65
# File 'lib/scss_lint/sass/tree.rb', line 58

def children
  begin
    additional_children = extract_script_nodes(value)
  rescue NotImplementedError # rubocop:disable HandleExceptions
    # Directive nodes may not define `value`
  end
  concat_expr_lists super, additional_children
end