Finish implementing LUA_PROBE

This commit is contained in:
2024-09-05 01:33:37 -04:00
parent ede234fc8a
commit fabbc55b86
4 changed files with 95 additions and 4 deletions

View File

@@ -19,7 +19,8 @@ protected:
void raise_eof_on_read() { err_eof_on_read_ = true; }
void raise_string_too_long() { err_string_too_long_ = true; }
void raise_integer_truncated() { err_integer_truncated_ = true; }
public:
bool get_err_eof_on_read() const { return err_eof_on_read_; }
bool get_err_string_too_long() const { return err_string_too_long_; }
bool get_err_integer_truncated() const { return err_integer_truncated_; }