mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
15 lines
517 B
C++
15 lines
517 B
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"
|
|
#include "toolchain/parse/node_ids.h"
|
|
|
|
namespace Carbon::Check {
|
|
auto HandleParseNode(Context& context, Parse::PositionalParamExprId node_id)
|
|
-> bool {
|
|
return context.TODO(node_id, "HandlePositionalParamExprId");
|
|
}
|
|
} // namespace Carbon::Check
|