aboutsummaryrefslogtreecommitdiff
path: root/lldb/bindings/interface/SBType.i
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2022-07-03 14:10:23 +0000
committerDimitry Andric <dim@FreeBSD.org>2022-07-03 14:10:23 +0000
commit145449b1e420787bb99721a429341fa6be3adfb6 (patch)
tree1d56ae694a6de602e348dd80165cf881a36600ed /lldb/bindings/interface/SBType.i
parentecbca9f5fb7d7613d2b94982c4825eb0d33d6842 (diff)
downloadsrc-145449b1e420787bb99721a429341fa6be3adfb6.tar.gz
src-145449b1e420787bb99721a429341fa6be3adfb6.zip
Vendor import of llvm-project main llvmorg-15-init-15358-g53dc0f107877.vendor/llvm-project/llvmorg-15-init-15358-g53dc0f107877
Diffstat (limited to 'lldb/bindings/interface/SBType.i')
-rw-r--r--lldb/bindings/interface/SBType.i12
1 files changed, 12 insertions, 0 deletions
diff --git a/lldb/bindings/interface/SBType.i b/lldb/bindings/interface/SBType.i
index d6e8db3ab428..8db2fa749634 100644
--- a/lldb/bindings/interface/SBType.i
+++ b/lldb/bindings/interface/SBType.i
@@ -355,6 +355,18 @@ public:
IsScopedEnumerationType ();
%feature("docstring",
+ "Returns true if this type is an aggregate type.
+
+ Language-specific behaviour:
+
+ * C: Returns true for struct values, arrays, and vectors.
+ * C++: Same a C. Also includes class instances.
+ * Objective-C: Same as C. Also includes class instances.
+ ") IsAggregateType;
+ bool
+ IsAggregateType ();
+
+ %feature("docstring",
"Returns a type that represents a pointer to this type.
If the type system of the current language can't represent a pointer to this