class Sass::Engine::Line

A line of Sass code.

‘text`: `String` : The text in the line, without any whitespace at the beginning or end.

‘tabs`: `Integer` : The level of indentation of the line.

‘index`: `Integer` : The line number in the original document.

‘offset`: `Integer` : The number of bytes in on the line that the text begins.

This ends up being the number of bytes of leading whitespace.

‘filename`: `String` : The name of the file in which this line appeared.

‘children`: `Array<Line>` : The lines nested below this one.

‘comment_tab_str`: `String?` : The prefix indentation for this comment, if it is a comment.