[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): class DemangleNodePayloadKind(Enum):
NONE = 0 NONE = 0
TEXT = 1 ONE_CHILD = 1
INDEX = 2 TWO_CHILDREN = 2
ONE_CHILD = 3 TEXT = 3
TWO_CHILDREN = 4 INDEX = 4
MANY_CHILDREN = 5 MANY_CHILDREN = 5