//===--- ParseStmt.cpp - Statement and Block Parser -----------------------===////// The LLVM Compiler Infrastructure//// This file is distributed under the University of Illinois Open Source// License. See LICENSE.TXT for details.////===----------------------------------------------------------------------===////// This file implements the Statement and Block portions of the Parser// interface.////===----------------------------------------------------------------------===//#include"clang/Parse/Parser.h"#include"RAIIObjectsForParser.h"#include"clang/Parse/DeclSpec.h"#include"clang/Parse/Scope.h"#include"clang/Basic/Diagnostic.h"#include"clang/Basic/PrettyStackTrace.h"#include"clang/Basic/SourceManager.h"using