Method: ClassHDL::HDLFunction#ivoked

Defined in:
lib/tdl/class_hdl/hdl_function.rb

#ivoked(*fargvs) ⇒ Object



103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
# File 'lib/tdl/class_hdl/hdl_function.rb', line 103

def ivoked(*fargvs)
    str = fargvs.map do |e| 
        if e.is_a? OpertorChain
            e.slaver = true 
        end
        
        if e.instance_of? String
            "\"#{e}\""
        else 
            e.to_s 
        end
    end.join(",")

    return "#{@name}(#{str})".to_nq
end