Method: AutoC::Function#method_missing

Defined in:
lib/autoc/function.rb

#method_missing(meth, *args) ⇒ Object

This allows to call other functions with this function’s individual parameters as arguments A call to unknown method results in the method’s name being emitted



174
# File 'lib/autoc/function.rb', line 174

def method_missing(meth, *args) = parameters.has_key?(meth) ? parameters[meth] : meth