clang 19.0.0git
CapturedStmt.h
Go to the documentation of this file.
1//===--- CapturedStmt.h - Types for CapturedStmts ---------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9
10#ifndef LLVM_CLANG_BASIC_CAPTUREDSTMT_H
11#define LLVM_CLANG_BASIC_CAPTUREDSTMT_H
12
13namespace clang {
14
15/// The different kinds of captured statement.
20};
21
22} // end namespace clang
23
24#endif // LLVM_CLANG_BASIC_CAPTUREDSTMT_H
The JSON file list parser is used to communicate input to InstallAPI.
CapturedRegionKind
The different kinds of captured statement.
Definition: CapturedStmt.h:16
@ CR_Default
Definition: CapturedStmt.h:17
@ CR_OpenMP
Definition: CapturedStmt.h:19
@ CR_ObjCAtFinally
Definition: CapturedStmt.h:18