enum class SkipPast

Description

Indicates what kind of indirections should be skipped past when retrieving storage locations or values. FIXME: Consider renaming this or replacing it with a more appropriate model. See the discussion in https://reviews.llvm.org/D116596 for context.

Declared at: clang/include/clang/Analysis/FlowSensitive/DataflowEnvironment.h:40

Enumerators

NameValueComment
None0No indirections should be skipped past.
Reference1An optional reference should be skipped past.
ReferenceThenPointer2An optional reference should be skipped past, then an optional pointer should be skipped past.