/
githubmirror
/
carbon-lang
Обзор
Документация
Войти
/
githubmirror
/
carbon-lang
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
trunk
toolchain/parse/handle.h
18 строк
574 B
Jon Ross-Perkins
Update pre-commit clang-format version (#5825)
18 июл 2025, 21:29
Не верифицирован
18 июл 2025, 21:29
8428b86
Код
Авторство
О чём код?
// 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_PARSE_HANDLE_H_ #define CARBON_TOOLCHAIN_PARSE_HANDLE_H_ #include "toolchain/parse/context.h" namespace Carbon::Parse { // Declare handlers for each parse state. #define CARBON_PARSE_STATE(Name) auto Handle##Name(Context& context) -> void; #include "toolchain/parse/state.def" } // namespace Carbon::Parse #endif // CARBON_TOOLCHAIN_PARSE_HANDLE_H_