Files
carbon-lang/toolchain/parse/handle.h
T
Jon Ross-Perkins 8428b86cfb Update pre-commit clang-format version (#5825)
Versus #5823, this is manually updated (still verified with `pre-commit
run -a`).

I also looked at updating prettier; adding a note why I'm not doing
that.
2025-07-18 18:29:12 +00:00

19 lines
574 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
#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_