class RuboCop::AST::KeywordSplatNode

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

def colon?

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

def hash_rocket?

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

def kwsplat_type?

Returns:
  • (true) -
def kwsplat_type?
  true
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