class YARD::Parser::Ruby::Legacy::StatementList

def process_complex_block_opener(tk)

Parameters:
  • tk (RubyToken::Token) -- the token to process
def process_complex_block_opener(tk)
  return unless OPEN_BLOCK_TOKENS.include?(tk.class)
  @current_block = tk.class
  @state = :block_statement
  true
end