mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
[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:
@@ -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
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user