================ @@ -0,0 +1,25 @@ +//===--- Reflection.h - Kind of reflection operands ---*- C++ -*-===// +// +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +// +//===----------------------------------------------------------------------===// +// +// This file declares the kinds of reflection operands. +// +//===----------------------------------------------------------------------===// + + +#ifndef LLVM_CLANG_AST_REFLECTION_H +#define LLVM_CLANG_AST_REFLECTION_H +namespace clang { + +// TODO(Reflection): Add support for Template, Namespace and DeclRefExpr. +enum class ReflectionKind { + Type +}; + +} ---------------- tbaederr wrote:
```suggestion } // namespace clang ``` https://github.com/llvm/llvm-project/pull/190356 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
