Files
carbon-lang/toolchain/check/handle_noop.cpp
T
2024-12-18 00:19:12 +00:00

38 lines
1.2 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 "toolchain/check/context.h"
#include "toolchain/check/handle.h"
namespace Carbon::Check {
auto HandleParseNode(Context& /*context*/, Parse::EmptyDeclId /*node_id*/)
-> bool {
// Empty declarations have no actions associated.
return true;
}
auto HandleParseNode(Context& /*context*/, Parse::InvalidParseId /*node_id*/)
-> bool {
CARBON_FATAL("Unreachable until we support checking error parse nodes");
}
auto HandleParseNode(Context& /*context*/,
Parse::InvalidParseStartId /*node_id*/) -> bool {
CARBON_FATAL("Unreachable until we support checking error parse nodes");
}
auto HandleParseNode(Context& /*context*/,
Parse::InvalidParseSubtreeId /*node_id*/) -> bool {
CARBON_FATAL("Unreachable until we support checking error parse nodes");
}
auto HandleParseNode(Context& /*context*/, Parse::PlaceholderId /*node_id*/)
-> bool {
CARBON_FATAL(
"Placeholder node should always be replaced before parse completes");
}
} // namespace Carbon::Check