Method: ClassHDL::HDLFunction#initialize
- Defined in:
- lib/tdl/class_hdl/hdl_function.rb
#initialize(belong_to_module, name, return_type, *argvs) ⇒ HDLFunction
Returns a new instance of HDLFunction.
62 63 64 65 66 67 68 |
# File 'lib/tdl/class_hdl/hdl_function.rb', line 62 def initialize(belong_to_module,name,return_type,*argvs) @opertor_chains = [] @name = name @argvs = argvs @return_type = return_type @belong_to_module = belong_to_module end |