diff --git a/Ast/src/Parser.cpp b/Ast/src/Parser.cpp index b86409cc..359b4c09 100644 --- a/Ast/src/Parser.cpp +++ b/Ast/src/Parser.cpp @@ -2636,7 +2636,6 @@ AstExpr* Parser::parseInterpString() std::vector> strings; std::vector expressions; - // INTERP TODO: Compile to ("text"):format(...) do { auto currentLexeme = lexer.current(); LUAU_ASSERT(currentLexeme.type == Lexeme::InterpStringBegin || currentLexeme.type == Lexeme::InterpStringMid || currentLexeme.type == Lexeme::InterpStringEnd);