aboutsummaryrefslogtreecommitdiff
path: root/src/openvic-dataloader/ParseState.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/openvic-dataloader/ParseState.hpp')
-rw-r--r--src/openvic-dataloader/ParseState.hpp14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/openvic-dataloader/ParseState.hpp b/src/openvic-dataloader/ParseState.hpp
index 259f2a5..a9a9953 100644
--- a/src/openvic-dataloader/ParseState.hpp
+++ b/src/openvic-dataloader/ParseState.hpp
@@ -1,7 +1,5 @@
#pragma once
-#include <utility>
-
#include <openvic-dataloader/detail/Encoding.hpp>
#include <lexy/encoding.hpp>
@@ -37,6 +35,18 @@ namespace ovdl {
_logger { this->ast().file() },
BasicParseState(encoding) {}
+ ParseState(ParseState&& other)
+ : _ast { std::move(other._ast) },
+ _logger { this->ast().file() },
+ BasicParseState(other.encoding()) {}
+
+ ParseState& operator=(ParseState&& rhs) {
+ this->~ParseState();
+ new (this) ParseState(std::move(rhs));
+
+ return *this;
+ }
+
template<typename Encoding, typename MemoryResource = void>
ParseState(lexy::buffer<Encoding, MemoryResource>&& buffer, detail::Encoding encoding)
: ParseState(typename ast_type::file_type { std::move(buffer) }, encoding) {}