Method: Sass::Script::Tree::Operation#children
- Defined in:
- lib/sass/script/tree/operation.rb
#children ⇒ Array<Node>
Returns the operands for this operation.
47 48 49 |
# File 'lib/sass/script/tree/operation.rb', line 47
def children
[@operand1, @operand2]
end
|