Module: RBS::AST::Declarations::NestedDeclarationHelper
Instance Method Summary collapse
Instance Method Details
#each_decl ⇒ Object
22 23 24 25 26 27 28 29 30 31 32 |
# File 'lib/rbs/ast/declarations.rb', line 22 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 |