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

def peek_no_space

Returns:
  • (RubyToken::Token) - the next non-space token
def peek_no_space
  return @tokens.first unless @tokens.first.class == TkSPACE
  @tokens[1]
end