Module: RBS::AST::Declarations::NestedDeclarationHelper
Instance Method Summary collapse
Instance Method Details
#each_decl ⇒ Object
117 118 119 120 121 122 123 124 125 126 127 |
# File 'lib/rbs/ast/declarations.rb', line 117 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 |