class RuboCop::AST::KeywordSplatNode

available to all ‘kwsplat` nodes within RuboCop.
plain node when the builder constructs the AST, making its methods
A node extension for `kwsplat` nodes. This will be used in place of a

def colon?

Returns:
  • (false) -
def colon?
  false
end

def hash_rocket?

Returns:
  • (false) -
def hash_rocket?
  false
end

def node_parts

Returns:
  • (Array) - the different parts of the `kwsplat`
def node_parts
  [self, self]
end

def operator

Returns:
  • (String) - the double splat operator
def operator
  DOUBLE_SPLAT
end