Sha256: 0453e0cd5979cf369e5ff40a88cc4445f8b0d7cc63c0b48b52440227847cf803
Contents?: true
Size: 319 Bytes
Versions: 18
Compression:
Stored size: 319 Bytes
Contents
module Etherlite::Contract class FunctionInput attr_reader :original_name, :type def initialize(_original_name, _type) @original_name = _original_name @type = _type end def signature @type.signature end def name @name ||= @original_name.underscore end end end
Version data entries
18 entries across 18 versions & 1 rubygems