Class Sass::Script::Functions::EvaluationContext
In: lib/sass/script/functions.rb
Parent: Object

The context in which methods in {Script::Functions} are evaluated. That means that all instance methods of {EvaluationContext} are available to use in functions.

Methods

new  

Included Modules

Sass::Script::Functions

Attributes

options  [R]  The options hash for the {Sass::Engine} that is processing the function call

@return [Hash<Symbol, Object>]

Public Class methods

@param options [Hash<Symbol, Object>] See \{options}

[Source]

    # File lib/sass/script/functions.rb, line 57
57:       def initialize(options)
58:         @options = options
59:       end

[Validate]