Sha256: f67ffc850a01f38e513a8945ad57e2dfceee63ee574caa941aebf19290be4b08
Contents?: true
Size: 546 Bytes
Versions: 4
Compression:
Stored size: 546 Bytes
Contents
module Yoda module Model module NodeSignatures class MethodDefinition < 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