Class: Sass::Environment
Overview
The lexical environment for SassScript. This keeps track of variable and mixin definitions.
A new environment is created for each level of Sass nesting. This allows variables to be lexically scoped. The new environment refers to the environment in the upper scope, so it has access to variables defined in enclosing scopes, but new variables are defined locally.
Environment also keeps track of the Engine options so that they can be made available to Script::Functions.
Instance Attribute Summary collapse
-
#options ⇒ Hash<Symbol, Object>
The options hash.
-
#parent ⇒ Environment
readonly
The enclosing environment, or nil if this is the global environment.
Instance Method Summary collapse
-
#initialize(parent = nil) ⇒ Environment
constructor
A new instance of Environment.
Constructor Details
#initialize(parent = nil) ⇒ Environment
Returns a new instance of Environment.
22 23 24 25 26 27 28 |
# File 'lib/sass/environment.rb', line 22
def initialize(parent = nil)
@vars = {}
@mixins = {}
@parent = parent
set_var("important", Script::String.new("!important")) unless @parent
end
|
Instance Attribute Details
#options ⇒ Hash<Symbol, Object>
The options hash. See the Sass options documentation.
34 35 36 |
# File 'lib/sass/environment.rb', line 34
def options
@options || (parent && parent.options) || {}
end
|
#parent ⇒ Environment (readonly)
The enclosing environment, or nil if this is the global environment.
18 19 20 |
# File 'lib/sass/environment.rb', line 18
def parent
@parent
end
|