clang  3.9.0
Public Member Functions | List of all members
clang::Sema::ImplicitExceptionSpecification Class Reference

Helper class that collects exception specifications for implicitly-declared special member functions. More...

#include <Sema.h>

Public Member Functions

 ImplicitExceptionSpecification (Sema &Self)
 
ExceptionSpecificationType getExceptionSpecType () const
 Get the computed exception specification type. More...
 
unsigned size () const
 The number of exceptions in the exception specification. More...
 
const QualTypedata () const
 The set of exceptions in the exception specification. More...
 
void CalledDecl (SourceLocation CallLoc, const CXXMethodDecl *Method)
 Integrate another called method into the collected data. More...
 
void CalledExpr (Expr *E)
 Integrate an invoked expression into the collected data. More...
 
FunctionProtoType::ExceptionSpecInfo getExceptionSpec () const
 Overwrite an EPI's exception specification with this computed exception specification. More...
 

Detailed Description

Helper class that collects exception specifications for implicitly-declared special member functions.

Definition at line 4338 of file Sema.h.

Constructor & Destructor Documentation

clang::Sema::ImplicitExceptionSpecification::ImplicitExceptionSpecification ( Sema Self)
inlineexplicit

Definition at line 4357 of file Sema.h.

References clang::EST_DynamicNone, and clang::Sema::getLangOpts().

Member Function Documentation

void Sema::ImplicitExceptionSpecification::CalledDecl ( SourceLocation  CallLoc,
const CXXMethodDecl Method 
)
void Sema::ImplicitExceptionSpecification::CalledExpr ( Expr E)

Integrate an invoked expression into the collected data.

Definition at line 218 of file SemaDeclCXX.cpp.

References clang::EST_MSAny, and clang::EST_None.

Referenced by clang::Sema::ComputeDefaultedDefaultCtorExceptionSpec(), and clang::Sema::ComputeInheritingCtorExceptionSpec().

const QualType* clang::Sema::ImplicitExceptionSpecification::data ( ) const
inline

The set of exceptions in the exception specification.

Definition at line 4374 of file Sema.h.

FunctionProtoType::ExceptionSpecInfo clang::Sema::ImplicitExceptionSpecification::getExceptionSpec ( ) const
inline

Overwrite an EPI's exception specification with this computed exception specification.

C++11 [except.spec]p14: The exception-specification is noexcept(false) if the set of potential exceptions of the special member function contains "any"

Definition at line 4384 of file Sema.h.

References clang::EST_ComputedNoexcept, clang::EST_Dynamic, clang::EST_None, clang::FunctionProtoType::ExceptionSpecInfo::Exceptions, clang::FunctionProtoType::ExceptionSpecInfo::NoexceptExpr, and clang::FunctionProtoType::ExceptionSpecInfo::Type.

Referenced by clang::Sema::EvaluateImplicitExceptionSpec().

ExceptionSpecificationType clang::Sema::ImplicitExceptionSpecification::getExceptionSpecType ( ) const
inline

Get the computed exception specification type.

Definition at line 4364 of file Sema.h.

References clang::EST_ComputedNoexcept.

unsigned clang::Sema::ImplicitExceptionSpecification::size ( ) const
inline

The number of exceptions in the exception specification.

Definition at line 4371 of file Sema.h.


The documentation for this class was generated from the following files: