class RubyLsp::Requests::Support::TestItem

def to_hash

: -> Hash[Symbol, untyped]
def to_hash
  {
    id: @id,
    label: @label,
    uri: @uri,
    range: @range,
    tags: @tags,
    children: children.map(&:to_hash),
  }
end