Method: ErbPP#method_missing
- Defined in:
- ext/cumo/narray/gen/erbpp2.rb
#method_missing(_meth_id, *args, &block) ⇒ Object
49 50 51 52 53 54 55 56 |
# File 'ext/cumo/narray/gen/erbpp2.rb', line 49 def method_missing(_meth_id, *args, &block) if args.empty? #$stderr.puts _meth_id.inspect v = get(_meth_id, *args, &block) return v if !v.nil? end method_missing_alias(_meth_id, *args, &block) end |