Add shebang support

This commit is contained in:
Rerumu 2021-11-05 23:12:07 -04:00
parent 96b1707f87
commit 2c509692ba

View file

@ -160,6 +160,9 @@ ParseResult Parser::parse(const char* buffer, size_t bufferSize, AstNameTable& n
{
std::vector<std::string> hotcomments;
if (p.lexer.current().type == '#' && p.lexer.lookahead().type == '!')
p.lexer.nextline();
while (isComment(p.lexer.current()) || (FFlag::LuauCaptureBrokenCommentSpans && p.lexer.current().type == Lexeme::BrokenComment))
{
const char* text = p.lexer.current().data;