module Sass::Script

def self.resolve(value, line, offset, environment)

Returns:
  • (String) - The string result of evaluating the SassScript

Parameters:
  • environment (Sass::Environment) -- The environment in which to evaluate the SassScript
  • offset (Fixnum) -- The number of characters in on `line` that the SassScript started.
  • line (Fixnum) -- The number of the line on which the SassScript appeared.
  • value (String) -- The SassScript
def self.resolve(value, line, offset, environment)
  parse(value, line, offset).perform(environment).to_s
end