Module: EDNGRAMMAR::Tagged1
- Defined in:
- lib/parser/edngrammar.rb
Instance Method Summary collapse
Instance Method Details
#ast ⇒ Object
1804 1805 1806 1807 1808 1809 1810 1811 |
# File 'lib/parser/edngrammar.rb', line 1804 def ast val = CBOR::Tagged.new(uint.text_value.to_i, item.ast) if ei = spec.text_value[1..-1] val = CBOR::Box.from_instance(val, {ei: ei}) # warn "*** implementing encoding indicator #{ei.inspect} after tag number #{uint.text_value}" end val end |