mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-26 01:21:57 +00:00
bc4dc6720b
Delete method.{cc,h} Rename $ccls/setSkippedRanges to $ccls/publishSkippedRanges Rename $ccls/publishSemanticHighlighting to $ccls/publishSemanticHighlight; stableId -> id
31 lines
723 B
C++
31 lines
723 B
C++
// Copyright 2017-2018 ccls Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
#pragma once
|
|
|
|
#include "lsp.h"
|
|
|
|
#include <algorithm>
|
|
#include <queue>
|
|
|
|
template <typename Node>
|
|
std::vector<lsLocation> FlattenHierarchy(const std::optional<Node> &root) {
|
|
if (!root)
|
|
return {};
|
|
std::vector<lsLocation> ret;
|
|
std::queue<const Node *> q;
|
|
for (auto &entry : root->children)
|
|
q.push(&entry);
|
|
while (q.size()) {
|
|
auto *entry = q.front();
|
|
q.pop();
|
|
if (entry->location.uri.raw_uri.size())
|
|
ret.push_back({entry->location});
|
|
for (auto &entry1 : entry->children)
|
|
q.push(&entry1);
|
|
}
|
|
std::sort(ret.begin(), ret.end());
|
|
ret.erase(std::unique(ret.begin(), ret.end()), ret.end());
|
|
return ret;
|
|
}
|