| Class | Ruva::VM::Types::Cat2Value |
| In: |
lib/ruva/types.rb
|
| Parent: | Object |
a category two type on the stack. Only needed so we know whether to pop one or two…
| new | -> | [] |
| __value | [RW] |
special case this to let us check for c2type
# File lib/ruva/types.rb, line 34
34: def is_a?(clz)
35: clz == Cat2Value || @__value.is_a?(clz)
36: end
# File lib/ruva/types.rb, line 46
46: def method_missing(sym, *args)
47: @__value.send(sym,*args)
48: end