class Sass::Engine::Line

: The lines nested below this one.
‘children`: `Array<Line>`
: The name of the file in which this line appeared.
`filename`: `String`
This ends up being the number of bytes of leading whitespace.
: The number of bytes in on the line that the text begins.
`offset`: `Fixnum`
: The line number in the original document.
`index`: `Fixnum`
: The level of indentation of the line.
`tabs`: `Fixnum`
: The text in the line, without any whitespace at the beginning or end.
`text`: `String`
A line of Sass code.

def comment?

def comment?
  text[0] == COMMENT_CHAR && (text[1] == SASS_COMMENT_CHAR || text[1] == CSS_COMMENT_CHAR)
end