core_identifier.cpp 469 B

1234567891011121314
  1. // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. // Exceptions. See /LICENSE for license information.
  3. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. #include "toolchain/check/core_identifier.h"
  5. namespace Carbon::Check {
  6. CARBON_DEFINE_ENUM_CLASS_NAMES(CoreIdentifier) {
  7. #define CARBON_CORE_IDENTIFIER(Name) CARBON_ENUM_CLASS_NAME_STRING(Name)
  8. #include "toolchain/check/core_identifier.def"
  9. };
  10. } // namespace Carbon::Check