Class: Sass::Script::Functions::Signature
- Inherits:
-  Struct - Object
- Struct
- Sass::Script::Functions::Signature
 
- Defined in:
- /Users/ceppstei/Projects/sass-lang/.sass/lib/sass/script/functions.rb
Overview
A class representing a Sass function signature.
Instance Attribute Summary (collapse)
-   - (Array<String>) args   The names of the arguments to the function. 
-   - (Array<String>) delayed_args   The names of the arguments whose evaluation should be delayed. 
-   - (Object) deprecated   Returns the value of attribute deprecated. 
-   - (Boolean) var_args   Whether the function takes a variable number of arguments. 
-   - (Boolean) var_kwargs   Whether the function takes an arbitrary set of keyword arguments. 
Instance Attribute Details
- (Array<String>) args
The names of the arguments to the function.
| 370 371 372 | # File '/Users/ceppstei/Projects/sass-lang/.sass/lib/sass/script/functions.rb', line 370
def args
  @args
end | 
- (Array<String>) delayed_args
The names of the arguments whose evaluation should be delayed.
| 370 371 372 | # File '/Users/ceppstei/Projects/sass-lang/.sass/lib/sass/script/functions.rb', line 370
def delayed_args
  @delayed_args
end | 
- (Object) deprecated
Returns the value of attribute deprecated
| 370 371 372 | # File '/Users/ceppstei/Projects/sass-lang/.sass/lib/sass/script/functions.rb', line 370
def deprecated
  @deprecated
end | 
- (Boolean) var_args
Whether the function takes a variable number of arguments.
| 370 371 372 | # File '/Users/ceppstei/Projects/sass-lang/.sass/lib/sass/script/functions.rb', line 370
def var_args
  @var_args
end | 
- (Boolean) var_kwargs
Whether the function takes an arbitrary set of keyword arguments.
| 370 371 372 | # File '/Users/ceppstei/Projects/sass-lang/.sass/lib/sass/script/functions.rb', line 370
def var_kwargs
  @var_kwargs
end |