Method: Dentaku::AST::Modulo#value
- Defined in:
- lib/dentaku/ast/arithmetic.rb
#value(context = {}) ⇒ Object
124 125 126 127 128 129 130 |
# File 'lib/dentaku/ast/arithmetic.rb', line 124 def value(context={}) if percent? cast(right.value(context)) * 0.01 else super end end |