Class: Sass::Script::Functions::Signature
- Inherits:
-
Struct
- Object
- Struct
- Sass::Script::Functions::Signature
- Defined in:
- lib/sass/script/functions.rb
Overview
A class representing a Sass function signature.
Instance Attribute Summary collapse
-
#args ⇒ Array<Symbol>
The names of the arguments to the function.
-
#var_args ⇒ Boolean
Whether the function takes a variable number of arguments.
-
#var_kwargs ⇒ Boolean
Whether the function takes an arbitrary set of keyword arguments.
Instance Attribute Details
#args ⇒ Array<Symbol>
The names of the arguments to the function.
214 215 216 |
# File 'lib/sass/script/functions.rb', line 214
def args
@args
end
|
#var_args ⇒ Boolean
Whether the function takes a variable number of arguments.
214 215 216 |
# File 'lib/sass/script/functions.rb', line 214
def var_args
@var_args
end
|
#var_kwargs ⇒ Boolean
Whether the function takes an arbitrary set of keyword arguments.
214 215 216 |
# File 'lib/sass/script/functions.rb', line 214
def var_kwargs
@var_kwargs
end
|