From 5cfaf412e7aed1aa31b02c67db8476fb94651b58 Mon Sep 17 00:00:00 2001 From: Adrian Duermael Date: Mon, 24 Feb 2025 15:52:47 -0800 Subject: [PATCH] Lexer: add offset getter --- Ast/include/Luau/Lexer.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Ast/include/Luau/Lexer.h b/Ast/include/Luau/Lexer.h index 20814860..3570a35c 100644 --- a/Ast/include/Luau/Lexer.h +++ b/Ast/include/Luau/Lexer.h @@ -187,6 +187,11 @@ public: static bool fixupQuotedString(std::string& data); static void fixupMultilineString(std::string& data); + unsigned int getOffset() const + { + return offset; + } + private: char peekch() const; char peekch(unsigned int lookahead) const;