aboutsummaryrefslogtreecommitdiff
path: root/lldb/include/lldb/Core/PropertiesBase.td
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/include/lldb/Core/PropertiesBase.td')
-rw-r--r--lldb/include/lldb/Core/PropertiesBase.td6
1 files changed, 6 insertions, 0 deletions
diff --git a/lldb/include/lldb/Core/PropertiesBase.td b/lldb/include/lldb/Core/PropertiesBase.td
index 6e95ceb779ba..1be3b908ed41 100644
--- a/lldb/include/lldb/Core/PropertiesBase.td
+++ b/lldb/include/lldb/Core/PropertiesBase.td
@@ -49,3 +49,9 @@ class DefaultUnsignedValue<int value> {
class EnumValues<string enum> {
string EnumValues = enum;
}
+
+// Determines the element type for arrays and dictionaries.
+class ElementType<string value> {
+ string ElementType = value;
+ bit HasElementType = 1;
+}