Module: RBS::AST::Declarations::NestedDeclarationHelper
Instance Method Summary collapse
Instance Method Details
#each_decl ⇒ Object
102 103 104 105 106 107 108 109 110 111 112 |
# File 'lib/rbs/ast/declarations.rb', line 102 def each_decl if block_given? members.each do |member| if member.is_a?(Base) yield(_ = member) end end else enum_for :each_decl end end |