| 123456789101112131415161718192021222324252627282930313233 |
- // 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_SCOPE_INDEX_H_
- #define CARBON_TOOLCHAIN_CHECK_SCOPE_INDEX_H_
- #include "toolchain/base/index_base.h"
- namespace Carbon::Check {
- // An index for a pushed scope. This may correspond to a permanent scope with a
- // corresponding `NameScope`, in which case a different index will be assigned
- // each time the scope is entered. Alternatively, it may be a temporary scope
- // such as is created for a block, and will only be entered once.
- //
- // `ScopeIndex` values are comparable. Lower `ScopeIndex` values correspond to
- // scopes entered earlier in the file.
- struct ScopeIndex : public IndexBase<ScopeIndex> {
- static constexpr llvm::StringLiteral Label = "scope";
- static const ScopeIndex Package;
- static const ScopeIndex None;
- using IndexBase::IndexBase;
- };
- constexpr ScopeIndex ScopeIndex::Package = ScopeIndex(0);
- constexpr ScopeIndex ScopeIndex::None = ScopeIndex(NoneIndex);
- } // namespace Carbon::Check
- #endif // CARBON_TOOLCHAIN_CHECK_SCOPE_INDEX_H_
|