mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-18 14:46:39 +00:00

This is useful where tests previously encoded information in the name names of ranges and points. Currently, this is pretty limited because names consist of only alphanumeric characters and '_'. With this patch, we can keep the names simple and attach optional payloads to ranges and points instead. The new syntax should be fully backwards compatible (if I haven't missed anything). I tested this against clangd unit tests and everything still passes. Differential Revision: https://reviews.llvm.org/D137909
91 lines
2.7 KiB
C++
91 lines
2.7 KiB
C++
//===--- Annotations.cpp - Annotated source code for unit tests --*- C++-*-===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "Annotations.h"
|
|
#include "SourceCode.h"
|
|
|
|
namespace clang {
|
|
namespace clangd {
|
|
|
|
Position Annotations::point(llvm::StringRef Name) const {
|
|
return pointWithPayload(Name).first;
|
|
}
|
|
|
|
std::pair<Position, llvm::StringRef>
|
|
Annotations::pointWithPayload(llvm::StringRef Name) const {
|
|
auto [BasePoint, Payload] = Base::pointWithPayload(Name);
|
|
return {offsetToPosition(code(), BasePoint), Payload};
|
|
}
|
|
|
|
std::vector<Position> Annotations::points(llvm::StringRef Name) const {
|
|
auto BasePoints = Base::points(Name);
|
|
|
|
std::vector<Position> Ps;
|
|
Ps.reserve(BasePoints.size());
|
|
for (const auto Point : BasePoints)
|
|
Ps.push_back(offsetToPosition(code(), Point));
|
|
|
|
return Ps;
|
|
}
|
|
|
|
std::vector<std::pair<Position, llvm::StringRef>>
|
|
Annotations::pointsWithPayload(llvm::StringRef Name) const {
|
|
auto BasePoints = Base::pointsWithPayload(Name);
|
|
|
|
std::vector<std::pair<Position, llvm::StringRef>> Ps;
|
|
Ps.reserve(BasePoints.size());
|
|
for (const auto &[Point, Payload] : BasePoints)
|
|
Ps.push_back({offsetToPosition(code(), Point), Payload});
|
|
|
|
return Ps;
|
|
}
|
|
|
|
static clangd::Range toLSPRange(llvm::StringRef Code,
|
|
llvm::Annotations::Range R) {
|
|
clangd::Range LSPRange;
|
|
LSPRange.start = offsetToPosition(Code, R.Begin);
|
|
LSPRange.end = offsetToPosition(Code, R.End);
|
|
return LSPRange;
|
|
}
|
|
|
|
Range Annotations::range(llvm::StringRef Name) const {
|
|
return rangeWithPayload(Name).first;
|
|
}
|
|
|
|
std::pair<clangd::Range, llvm::StringRef>
|
|
Annotations::rangeWithPayload(llvm::StringRef Name) const {
|
|
auto [BaseRange, Payload] = Base::rangeWithPayload(Name);
|
|
return {toLSPRange(code(), BaseRange), Payload};
|
|
}
|
|
|
|
std::vector<Range> Annotations::ranges(llvm::StringRef Name) const {
|
|
auto OffsetRanges = Base::ranges(Name);
|
|
|
|
std::vector<clangd::Range> Rs;
|
|
Rs.reserve(OffsetRanges.size());
|
|
for (const auto &R : OffsetRanges)
|
|
Rs.push_back(toLSPRange(code(), R));
|
|
|
|
return Rs;
|
|
}
|
|
|
|
std::vector<std::pair<clangd::Range, llvm::StringRef>>
|
|
Annotations::rangesWithPayload(llvm::StringRef Name) const {
|
|
auto OffsetRanges = Base::rangesWithPayload(Name);
|
|
|
|
std::vector<std::pair<clangd::Range, llvm::StringRef>> Rs;
|
|
Rs.reserve(OffsetRanges.size());
|
|
for (const auto &[R, Payload] : OffsetRanges)
|
|
Rs.push_back({toLSPRange(code(), R), Payload});
|
|
|
|
return Rs;
|
|
}
|
|
|
|
} // namespace clangd
|
|
} // namespace clang
|