class Sass::Script::Parser

def initialize(str, line, offset, filename = nil)

Parameters:
  • filename (String) -- The name of the file in which the SassScript appears.
  • offset (Fixnum) -- The number of characters in on which the SassScript appears.
  • line (Fixnum) -- The line on which the SassScript appears.
  • str (String, StringScanner) -- The source text to parse
def initialize(str, line, offset, filename = nil)
  @filename = filename
  @lexer = Lexer.new(str, line, offset, filename)
end