blob: eaa65b3198d74445c2d8d6788b43ab85ebb0661e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
// Official repository: https://github.com/ne-foss-org/nectar
#ifndef NECTAR_COMPILERKIT_AST_INL
#define NECTAR_COMPILERKIT_AST_INL
namespace CompilerKit {
/// find the perfect matching word in a haystack.
/// \param haystack base string
/// \param needle the string we search for.
/// \return if we found it or not.
inline bool ast_find_needle(STLString haystack, STLString needle) noexcept {
auto index = haystack.find(needle);
// check for needle validity.
if (index == STLString::npos) return false;
// declare lambda
auto not_part_of_word = [&](int index) {
if (std::isspace(haystack[index]) || std::ispunct(haystack[index])) return true;
if (index <= 0 || index >= haystack.size()) return true;
return false;
};
return not_part_of_word(index - 1) && not_part_of_word(index + needle.size());
}
/// find a word within strict conditions and returns a range of it.
/// \param haystack
/// \param needle
/// \return position of needle.
inline SizeType ast_find_needle_range(STLString haystack, STLString needle) noexcept {
auto index = haystack.find(needle);
// check for needle validity.
if (index == STLString::npos) return false;
if (!isalnum((haystack[index + needle.size() + 1])) &&
!isdigit(haystack[index + needle.size() + 1]) &&
!isalnum((haystack[index - needle.size() - 1])) &&
!isdigit(haystack[index - needle.size() - 1])) {
return index;
}
return STLString::npos;
}
/// =========================================================== ///
//! @brief What language are we dealing with?
/// =========================================================== ///
inline const char* ICompilerFrontend::Language() {
return kInvalidFrontend;
}
/// =========================================================== ///
/// @brief Checks if language is a valid frontend.
/// =========================================================== ///
inline bool ICompilerFrontend::IsValid() {
return strcmp(this->Language(), kInvalidFrontend) > 0;
}
} // namespace CompilerKit
#endif
|