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;