mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 20:30:14 +01:00
Instead of calling `PerformCppOverloadResolution()` and use the complex return value to call `PerformCallToFunction()`, we call `PerformCallToCppFunction()` which will call both `PerformCppOverloadResolution()` and `PerformCallToFunction()`. Followup of #6112. Part of #5995.
26 lines
946 B
C++
26 lines
946 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
|
|
|
|
#ifndef CARBON_TOOLCHAIN_CHECK_CPP_OPERATORS_H_
|
|
#define CARBON_TOOLCHAIN_CHECK_CPP_OPERATORS_H_
|
|
|
|
#include "toolchain/check/context.h"
|
|
#include "toolchain/check/operator.h"
|
|
#include "toolchain/sem_ir/ids.h"
|
|
|
|
namespace Carbon::Check {
|
|
|
|
// Looks up the given operator in the Clang AST generated when importing C++
|
|
// code using argument dependent lookup (ADL) and return overload set
|
|
// instruction.
|
|
auto LookupCppOperator(Context& context, SemIR::LocId loc_id, Operator op,
|
|
llvm::ArrayRef<SemIR::InstId> arg_ids) -> SemIR::InstId;
|
|
|
|
// Returns whether the decl is an operator member function.
|
|
auto IsCppOperatorMethodDecl(clang::Decl* decl) -> bool;
|
|
|
|
} // namespace Carbon::Check
|
|
|
|
#endif // CARBON_TOOLCHAIN_CHECK_CPP_OPERATORS_H_
|