[Lldb-commits] [lldb] [LLDB][Docs] List available settings (PR #168245)
via lldb-commits
lldb-commits at lists.llvm.org
Thu Feb 12 08:48:48 PST 2026
================
@@ -0,0 +1,106 @@
+import argparse
+from typing import TypedDict, Union, Optional, TextIO, NotRequired
+from dataclasses import dataclass
+import json
+
+
+class Property(TypedDict):
+ name: str
+ type: str
+ default: NotRequired[str]
+ description: NotRequired[str]
+
+
+class PropertyGroup(TypedDict):
+ path: str
+ """The full path to this group separated by dots"""
----------------
Nerixyz wrote:
Done.
https://github.com/llvm/llvm-project/pull/168245
More information about the lldb-commits
mailing list