[utils] Update Demangle::Node data formatter (#82739)

Updates the lldb data formatter for `Demangle::Node` to reflect the
current `PayloadKind` enum values (which were changed in
https://github.com/swiftlang/swift/pull/72884).
This commit is contained in:
Dave Lee
2025-07-04 21:36:37 -07:00
committed by GitHub
parent 61fc2e052a
commit 3ac427f94e

View File

@@ -62,10 +62,10 @@ def SmallBitVectorSummaryProvider(valobj, internal_dict):
class DemangleNodePayloadKind(Enum):
NONE = 0
TEXT = 1
INDEX = 2
ONE_CHILD = 3
TWO_CHILDREN = 4
ONE_CHILD = 1
TWO_CHILDREN = 2
TEXT = 3
INDEX = 4
MANY_CHILDREN = 5