refactor(lexer): change token_handle to token result

Refs: #1
This commit is contained in:
2026-06-02 16:47:02 +02:00
parent 3491f9aebb
commit cb7a348540
9 changed files with 162 additions and 111 deletions
+1 -1
View File
@@ -205,7 +205,7 @@ public:
* @param rhs Value to compare against.
* @return true if the values are equal.
*/
bool operator==(const value_type& rhs) const { return !m_error && !rhs.m_error && m_value.result == rhs; }
bool operator==(const value_type& rhs) const { return !m_error && m_value.result == rhs; }
/**
* @brief Compares a result with a value for inequality.