mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 20:20:10 +01:00
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.
19 lines
574 B
C++
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_
|