From ea01fe3b34d1d92e7c7dcc2c81c02b8b1c2aad48 Mon Sep 17 00:00:00 2001 From: Kampfkarren Date: Tue, 26 Jul 2022 20:22:17 -0700 Subject: [PATCH] Remove outdated TODO --- Ast/src/Parser.cpp | 1 - 1 file changed, 1 deletion(-) 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);