From 78512616e1adcbf38ae6fb300b2419756dad48d5 Mon Sep 17 00:00:00 2001 From: Xie Zicong Date: Sun, 8 Dec 2024 22:10:58 +0800 Subject: [PATCH] Added TODO comment in compiler.cc. --- prototype/compiler.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/prototype/compiler.cc b/prototype/compiler.cc index 0f34e32..f0f2970 100644 --- a/prototype/compiler.cc +++ b/prototype/compiler.cc @@ -3436,6 +3436,7 @@ size_t BytecodeGenerator::HandleExpr(ExprNode* expr, size_t& size) { } } size_t BytecodeGenerator::HandleUnaryExpr(UnaryNode* expr, size_t& size) { + // TODO(BytecodeGenerator::HandleUnaryExpr): Complete the function. switch (expr->GetOperator()) { case UnaryNode::Operator::kPostInc: break;