1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-05-12 16:15:54 +08:00
CMake/Source/cmGeneratorExpressionLexer.cxx
Kitware Robot 0b96ae1f6a Revise C++ coding style using clang-format with "east const"
Run the `clang-format.bash` script to update all our C and C++ code to a
new style defined by `.clang-format`, now with "east const" enforcement.
Use `clang-format` version 18.

* If you reached this commit for a line in `git blame`, re-run the blame
  operation starting at the parent of this commit to see older history
  for the content.

* See the parent commit for instructions to rebase a change across this
  style transition commit.

Issue: #26123
2025-01-23 13:09:50 -05:00

65 lines
1.8 KiB
C++

/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#include "cmGeneratorExpressionLexer.h"
cmGeneratorExpressionLexer::cmGeneratorExpressionLexer() = default;
static void InsertText(char const* upto, char const* c,
std::vector<cmGeneratorExpressionToken>& result)
{
if (upto != c) {
result.emplace_back(cmGeneratorExpressionToken::Text, upto, c - upto);
}
}
std::vector<cmGeneratorExpressionToken> cmGeneratorExpressionLexer::Tokenize(
std::string const& input)
{
std::vector<cmGeneratorExpressionToken> result;
if (input.find('$') == std::string::npos) {
result.emplace_back(cmGeneratorExpressionToken::Text, input.c_str(),
input.size());
return result;
}
char const* c = input.c_str();
char const* upto = c;
for (; *c; ++c) {
switch (*c) {
case '$':
if (c[1] == '<') {
InsertText(upto, c, result);
result.emplace_back(cmGeneratorExpressionToken::BeginExpression, c,
2);
upto = c + 2;
++c;
this->SawBeginExpression = true;
}
break;
case '>':
InsertText(upto, c, result);
result.emplace_back(cmGeneratorExpressionToken::EndExpression, c, 1);
upto = c + 1;
this->SawGeneratorExpression = this->SawBeginExpression;
break;
case ':':
InsertText(upto, c, result);
result.emplace_back(cmGeneratorExpressionToken::ColonSeparator, c, 1);
upto = c + 1;
break;
case ',':
InsertText(upto, c, result);
result.emplace_back(cmGeneratorExpressionToken::CommaSeparator, c, 1);
upto = c + 1;
break;
default:
break;
}
}
InsertText(upto, c, result);
return result;
}