9#ifndef FORTRAN_SEMANTICS_CHECK_DO_FORALL_H_
10#define FORTRAN_SEMANTICS_CHECK_DO_FORALL_H_
12#include "flang/Common/idioms.h"
13#include "flang/Semantics/semantics.h"
33namespace Fortran::semantics {
36ENUM_CLASS(StmtType, CYCLE, EXIT)
45 void Enter(
const parser::CycleStmt &);
53 void Enter(
const parser::ExitStmt &);
62 void Leave(
const parser::StatVariable &);
67 std::list<SemanticsContext::IndexVarKind> nestedWithinConcurrent_;
68 std::set<const Symbol *> activeIoImpliedDoVars_;
72 StmtType,
const char *enclosingStmt,
const ConstructNode &)
const;
73 void CheckDoConcurrentExit(StmtType,
const ConstructNode &)
const;
74 void CheckForBadLeave(StmtType,
const ConstructNode &)
const;
Definition semantics.h:68
Definition check-expression.h:19
Definition parse-tree.h:2046
Definition parse-tree.h:3340
Definition parse-tree.h:2699
Definition parse-tree.h:2366
Definition parse-tree.h:1736
Definition parse-tree.h:2142
Definition parse-tree.h:2171
Definition parse-tree.h:2148
Definition parse-tree.h:2920
Definition parse-tree.h:2759
Definition parse-tree.h:592
Definition parse-tree.h:2839
Definition semantics.h:449