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;