Sha256: 0a05114481e7e4284ed2494de8c816391b2941393fc5d7badd62d46c73cc0787
Contents?: true
Size: 534 Bytes
Versions: 4
Compression:
Stored size: 534 Bytes
Contents
module Yoda module Model module NodeSignatures class Send < Base def descriptions [node_type_description, *function_descriptions] end def function_descriptions node_info.method_candidates.map { |function| Descriptions::FunctionDescription.new(function) } end # @return [Array<(String, Integer, Integer)>] def defined_files node_info.method_candidates.map { |function| function.primary_source }.compact end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems