Method: StyleScript::RangeNode#initialize
- Defined in:
- lib/style_script/nodes.rb
#initialize(from, to, exclusive = false) ⇒ RangeNode
Returns a new instance of RangeNode.
449 450 451 |
# File 'lib/style_script/nodes.rb', line 449 def initialize(from, to, exclusive=false) @from, @to, @exclusive = from, to, exclusive end |