Method: Sequitur::Production#decr_refcount

Defined in:
lib/sequitur/production.rb

#decr_refcountObject

Decrement the reference count by one.

Raises:

  • (StandardError)


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