Files
carbon-lang/toolchain/sem_ir/observe.cpp
T
Özgür T. ÖnsoyandDana Jansens 08385adeb5 Implement checking observe declarations (#6709)
This adds SemIR structs and implements building `observe` lists, as well
as naming, formatting, and importing `observe` declarations.

---------

Co-authored-by: Dana Jansens <danakj@orodu.net>
2026-07-08 17:07:10 +00:00

19 lines
774 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/sem_ir/observe.h"
#include "toolchain/base/block_value_store_impl.h"
#include "toolchain/base/value_store_impl.h"
namespace Carbon {
template class ValueStore<SemIR::ObserveId, SemIR::Observe,
Tag<SemIR::CheckIRId>>;
template class ValueStore<SemIR::ObserveBlockId,
llvm::MutableArrayRef<SemIR::ObserveId>,
Tag<SemIR::CheckIRId>>;
template class BlockValueStore<SemIR::ObserveBlockId, SemIR::ObserveId,
Tag<SemIR::CheckIRId>>;
} // namespace Carbon