Files
carbon-lang/explorer/ast/statement.cpp
T
Jon Ross-Perkins 39155d34ae Remove experimental continuation support (#2776)
Removes `__continuation`, `__await`, and `__run`.

In part here, the discussion was that while the feature had been useful for validating the early explorer design, it's no longer needed for that role as the explorer is now quite robust. Continuations have been experimental and, at this point, don't have an owner pushing to a proposal.

The triggering factor is that, as we push to address fuzzer issues, I ran into a crash bug in this code; basically, `fn Main() -> i32 { __await; return 0; }`. When I mentioned this, the reaction seemed to trend towards removal of the feature.
2023-04-19 14:22:43 -07:00

160 lines
4.4 KiB
C++

// Part of the Carbon Language project, under the Apache License v2.0 with LLVM
// Exceptions. See /LICENSE for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
#include "explorer/ast/statement.h"
#include "common/check.h"
#include "explorer/ast/declaration.h"
#include "explorer/common/arena.h"
#include "llvm/Support/Casting.h"
namespace Carbon {
using llvm::cast;
Statement::~Statement() = default;
void Statement::PrintDepth(int depth, llvm::raw_ostream& out) const {
if (depth == 0) {
out << " ... ";
return;
}
switch (kind()) {
case StatementKind::Match: {
const auto& match = cast<Match>(*this);
out << "match (" << match.expression() << ") {";
if (depth < 0 || depth > 1) {
out << "\n";
for (const auto& clause : match.clauses()) {
out << "case " << clause.pattern() << " =>\n";
clause.statement().PrintDepth(depth - 1, out);
out << "\n";
}
} else {
out << "...";
}
out << "}";
break;
}
case StatementKind::While: {
const auto& while_stmt = cast<While>(*this);
out << "while (" << while_stmt.condition() << ")\n";
while_stmt.body().PrintDepth(depth - 1, out);
break;
}
case StatementKind::For: {
const auto& for_stmt = cast<For>(*this);
out << "for (" << for_stmt.variable_declaration() << " in "
<< for_stmt.loop_target() << ")\n";
for_stmt.body().PrintDepth(depth - 1, out);
break;
}
case StatementKind::Break:
out << "break;";
break;
case StatementKind::Continue:
out << "continue;";
break;
case StatementKind::VariableDefinition: {
const auto& var = cast<VariableDefinition>(*this);
if (var.is_returned()) {
out << "returned ";
}
out << "var " << var.pattern();
if (var.has_init()) {
out << " = " << var.init();
}
out << ";";
break;
}
case StatementKind::ExpressionStatement:
out << cast<ExpressionStatement>(*this).expression() << ";";
break;
case StatementKind::Assign: {
const auto& assign = cast<Assign>(*this);
out << assign.lhs() << " " << AssignOperatorToString(assign.op()) << " "
<< assign.rhs() << ";";
break;
}
case StatementKind::IncrementDecrement: {
const auto& inc_dec = cast<IncrementDecrement>(*this);
out << (inc_dec.is_increment() ? "++" : "--") << inc_dec.argument();
break;
}
case StatementKind::If: {
const auto& if_stmt = cast<If>(*this);
out << "if (" << if_stmt.condition() << ")\n";
if_stmt.then_block().PrintDepth(depth - 1, out);
if (if_stmt.else_block()) {
out << "\nelse\n";
(*if_stmt.else_block())->PrintDepth(depth - 1, out);
}
break;
}
case StatementKind::ReturnVar: {
out << "return var;";
break;
}
case StatementKind::ReturnExpression: {
const auto& ret = cast<ReturnExpression>(*this);
if (ret.is_omitted_expression()) {
out << "return;";
} else {
out << "return " << ret.expression() << ";";
}
break;
}
case StatementKind::Block: {
const auto& block = cast<Block>(*this);
out << "{";
if (depth < 0 || depth > 1) {
out << "\n";
}
for (const auto* statement : block.statements()) {
statement->PrintDepth(depth, out);
if (depth < 0 || depth > 1) {
out << "\n";
}
}
out << "}";
if (depth < 0 || depth > 1) {
out << "\n";
}
break;
}
}
}
auto AssignOperatorToString(AssignOperator op) -> std::string_view {
switch (op) {
case AssignOperator::Plain:
return "=";
case AssignOperator::Add:
return "+=";
case AssignOperator::Div:
return "/=";
case AssignOperator::Mul:
return "*=";
case AssignOperator::Mod:
return "%=";
case AssignOperator::Sub:
return "-=";
case AssignOperator::And:
return "&=";
case AssignOperator::Or:
return "|=";
case AssignOperator::Xor:
return "^=";
case AssignOperator::ShiftLeft:
return "<<=";
case AssignOperator::ShiftRight:
return ">>=";
}
}
Return::Return(CloneContext& context, const Return& other)
: Statement(context, other), function_(context.Remap(other.function_)) {}
} // namespace Carbon