enum ImplicitParamDecl::ImplicitParamKind
Description
Defines the kind of the implicit parameter: is this an implicit parameter with pointer to 'this', 'self', '_cmd', virtual table pointers, captured context or something else.
Declared at: clang/include/clang/AST/Decl.h:1620
Enumerators
Name | Value | Comment |
---|---|---|
ObjCSelf | 0 | Parameter for Objective-C 'self' argument |
ObjCCmd | 1 | Parameter for Objective-C '_cmd' argument |
CXXThis | 2 | Parameter for C++ 'this' argument |
CXXVTT | 3 | Parameter for C++ virtual table pointers |
CapturedContext | 4 | Parameter for captured context |
ThreadPrivateVar | 5 | Parameter for Thread private variable |
Other | 6 | Other implicit parameter |