mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 20:10:13 +01:00
llvm::function_ref (like std::unique_ptr, for instance) already has a null/empty state, so use that to avoid confusion/duplication of empty states between optional and the nested function_refs.
38 lines
1.6 KiB
C++
38 lines
1.6 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
|
|
|
|
#ifndef CARBON_TOOLCHAIN_CHECK_MEMBER_ACCESS_H_
|
|
#define CARBON_TOOLCHAIN_CHECK_MEMBER_ACCESS_H_
|
|
|
|
#include "toolchain/check/context.h"
|
|
#include "toolchain/sem_ir/ids.h"
|
|
|
|
namespace Carbon::Check {
|
|
|
|
// Creates SemIR to perform a member access with base expression `base_id` and
|
|
// member name `name_id`. Returns the result of the access.
|
|
auto PerformMemberAccess(Context& context, SemIR::LocId loc_id,
|
|
SemIR::InstId base_id, SemIR::NameId name_id)
|
|
-> SemIR::InstId;
|
|
|
|
// Creates SemIR to perform a compound member access with base expression
|
|
// `base_id` and member name expression `member_expr_id`. Returns the result of
|
|
// the access. If specified, `missing_impl_diagnoser()` is used to build an
|
|
// error diagnostic when impl binding fails due to a missing `impl`.
|
|
auto PerformCompoundMemberAccess(
|
|
Context& context, SemIR::LocId loc_id, SemIR::InstId base_id,
|
|
SemIR::InstId member_expr_id,
|
|
Context::BuildDiagnosticFn missing_impl_diagnoser = nullptr)
|
|
-> SemIR::InstId;
|
|
|
|
// Creates SemIR to perform a tuple index with base expression `tuple_inst_id`
|
|
// and index expression `index_inst_id`. Returns the result of the access.
|
|
auto PerformTupleAccess(Context& context, SemIR::LocId loc_id,
|
|
SemIR::InstId tuple_inst_id,
|
|
SemIR::InstId index_inst_id) -> SemIR::InstId;
|
|
|
|
} // namespace Carbon::Check
|
|
|
|
#endif // CARBON_TOOLCHAIN_CHECK_MEMBER_ACCESS_H_
|