Class: Yass::Declarations::Calc
- Inherits:
-
Object
- Object
- Yass::Declarations::Calc
show all
- Includes:
- Node
- Defined in:
- lib/yass/declarations.rb
Defined Under Namespace
Classes: Abs, AnchorFunction, AnchorSideKeyword, AnchorSizeFunction, AnchorSizeKeyword, Clamp, Hypot, Invert, MinMax, ModRem, Negate, Product, Round, Sign, Sum
Constant Summary
collapse
- RUBY_METHODS =
%i(clamping_mode kind root).freeze
Instance Method Summary
collapse
Methods included from Node
#to_h
Instance Method Details
#accept(visitor) ⇒ Object
1388
1389
1390
|
# File 'lib/yass/declarations.rb', line 1388
def accept(visitor)
visitor.visit_declaration_calc(self)
end
|
#kind ⇒ Object
1392
1393
1394
|
# File 'lib/yass/declarations.rb', line 1392
def kind
:calc
end
|