Class: Yass::Declarations::Filter
- Inherits:
-
Object
- Object
- Yass::Declarations::Filter
show all
- Includes:
- Node
- Defined in:
- lib/yass/declarations.rb
Defined Under Namespace
Classes: Blur, Brightness, Contrast, DropShadow, Grayscale, HueRotate, Invert, Opacity, Saturate, Sepia
Constant Summary
collapse
- RUBY_METHODS =
%i(kind values).freeze
Instance Method Summary
collapse
Methods included from Node
#to_h
Instance Method Details
#accept(visitor) ⇒ Object
3452
3453
3454
|
# File 'lib/yass/declarations.rb', line 3452
def accept(visitor)
visitor.visit_declaration_filter(self)
end
|
#kind ⇒ Object
3456
3457
3458
|
# File 'lib/yass/declarations.rb', line 3456
def kind
:filter
end
|