Method: RuboCop::AST::UntilNode#keyword

Defined in:
lib/rubocop/ast/node/until_node.rb

#keywordString

Returns the keyword of the ‘until` statement as a string.

Returns:

  • (String)

    the keyword of the ‘until` statement



15
16
17
# File 'lib/rubocop/ast/node/until_node.rb', line 15

def keyword
  'until'
end