Class: Sass::Script::Functions::EvaluationContext
- Inherits:
-  Object - Object
- Sass::Script::Functions::EvaluationContext
 
- Includes:
- Sass::Script::Functions, Value::Helpers
- Defined in:
- /Users/ceppstei/Projects/sass-lang/.sass/lib/sass/script/functions.rb
Overview
The context in which methods in Sass::Script::Functions are evaluated. That means that all instance methods of EvaluationContext are available to use in functions.
Constant Summary
Instance Attribute Summary (collapse)
-   - (Environment) environment   readonly The environment for this function. 
-   - ({Symbol => Object}) options   readonly The options hash for the Engine that is processing the function call. 
Instance Method Summary (collapse)
-   - assert_integer(number, name = nil)   Asserts that the value is an integer. 
-   - assert_type(value, type, name = nil)   Asserts that the type of a given SassScript value is the expected type (designated by a symbol). 
-   - assert_unit(number, unit, name = nil)   Asserts that the unit of the number is as expected. 
-   - (EvaluationContext) initialize(environment)   constructor A new instance of EvaluationContext. 
Methods included from Value::Helpers
#bool, #calc?, #hex_color, #hsl_color, #list, #map, #null, #number, #parse_complex_selector, #parse_compound_selector, #parse_selector, #quoted_string, #rgb_color, #unquoted_string
Methods included from Sass::Script::Functions
#abs, #adjust_color, #adjust_hue, #alpha, #append, #blue, #call, #ceil, #change_color, #comparable, #complement, #counter, #counters, #darken, declare, #desaturate, #feature_exists, #floor, #function_exists, #global_variable_exists, #grayscale, #green, #hsl, #hsla, #hue, #ie_hex_str, #if, #index, #inspect, #invert, #is_superselector, #join, #keywords, #length, #lighten, #lightness, #list_separator, #map_get, #map_has_key, #map_keys, #map_merge, #map_remove, #map_values, #max, #min, #mix, #mixin_exists, #nth, #opacify, #opacity, #percentage, #quote, #random, random_number_generator, random_seed=, #red, #rgb, #rgba, #round, #saturate, #saturation, #scale_color, #selector_append, #selector_extend, #selector_nest, #selector_parse, #selector_replace, #selector_unify, #set_nth, signature, #simple_selectors, #str_index, #str_insert, #str_length, #str_slice, #to_lower_case, #to_upper_case, #transparentize, #type_of, #unique_id, #unit, #unitless, #unquote, #variable_exists, #zip
Constructor Details
- (EvaluationContext) initialize(environment)
Returns a new instance of EvaluationContext
| 509 510 511 512 | # File '/Users/ceppstei/Projects/sass-lang/.sass/lib/sass/script/functions.rb', line 509
def initialize(environment)
  @environment = environment
  @options = environment.options
end | 
Instance Attribute Details
- (Environment) environment (readonly)
The environment for this function. This environment’s Environment#parent is the global environment, and its Environment#caller is a read-only view of the local environment of the caller of this function.
| 501 502 503 | # File '/Users/ceppstei/Projects/sass-lang/.sass/lib/sass/script/functions.rb', line 501
def environment
  @environment
end | 
- ({Symbol => Object}) options (readonly)
The options hash for the Engine that is processing the function call
| 506 507 508 | # File '/Users/ceppstei/Projects/sass-lang/.sass/lib/sass/script/functions.rb', line 506
def options
  @options
end | 
Instance Method Details
- assert_integer(number, name = nil)
Asserts that the value is an integer.
| 574 575 576 577 578 579 580 581 582 | # File '/Users/ceppstei/Projects/sass-lang/.sass/lib/sass/script/functions.rb', line 574
def assert_integer(number, name = nil)
  assert_type number, :Number, name
  return if number.int?
  if name
    raise ArgumentError.new("Expected $#{name} to be an integer but got #{number}")
  else
    raise ArgumentError.new("Expected #{number} to be an integer")
  end
end | 
- assert_type(value, type, name = nil)
Asserts that the type of a given SassScript value is the expected type (designated by a symbol).
Valid types are :Bool, :Color, :Number, and :String. Note that :String will match both double-quoted strings and unquoted identifiers.
| 528 529 530 531 532 533 534 535 536 537 538 539 | # File '/Users/ceppstei/Projects/sass-lang/.sass/lib/sass/script/functions.rb', line 528
def assert_type(value, type, name = nil)
  klass = Sass::Script::Value.const_get(type)
  if value.is_a?(klass)
    value.check_deprecated_interp if type == :String
    return
  end
  return if value.is_a?(Sass::Script::Value::List) && type == :Map && value.value.empty?
  err = "#{value.inspect} is not a #{TYPE_NAMES[type] || type.to_s.downcase}"
  err = "$#{name.to_s.tr('_', '-')}: " + err if name
  raise ArgumentError.new(err)
end | 
- assert_unit(number, unit, name = nil)
Asserts that the unit of the number is as expected.
| 552 553 554 555 556 557 558 559 560 561 | # File '/Users/ceppstei/Projects/sass-lang/.sass/lib/sass/script/functions.rb', line 552
def assert_unit(number, unit, name = nil)
  assert_type number, :Number, name
  return if number.is_unit?(unit)
  expectation = unit ? "have a unit of #{unit}" : "be unitless"
  if name
    raise ArgumentError.new("Expected $#{name} to #{expectation} but got #{number}")
  else
    raise ArgumentError.new("Expected #{number} to #{expectation}")
  end
end |