Method: Sequitur::Production#decr_refcount
- Defined in:
- lib/sequitur/production.rb
#decr_refcount ⇒ Object
Decrement the reference count by one.
61 62 63 64 65 |
# File 'lib/sequitur/production.rb', line 61 def decr_refcount raise StandardError, 'Internal error' if @refcount.zero? @refcount -= 1 end |