class Sass::Script::Value::Base

Attributes

node_parent[RW]

Public Instance Methods

children() click to toggle source
# File lib/scss_lint/sass/script.rb, line 50
def children
  []
end
line() click to toggle source
# File lib/scss_lint/sass/script.rb, line 54
def line
  @line || (node_parent && node_parent.line)
end
source_range() click to toggle source
# File lib/scss_lint/sass/script.rb, line 58
def source_range
  @source_range || (node_parent && node_parent.source_range)
end