Skip to content

Commit 3ac427f

Browse files
authored
[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 #72884).
1 parent 61fc2e0 commit 3ac427f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

utils/lldb/lldbSwiftDataFormatters.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@ def SmallBitVectorSummaryProvider(valobj, internal_dict):
6262

6363
class DemangleNodePayloadKind(Enum):
6464
NONE = 0
65-
TEXT = 1
66-
INDEX = 2
67-
ONE_CHILD = 3
68-
TWO_CHILDREN = 4
65+
ONE_CHILD = 1
66+
TWO_CHILDREN = 2
67+
TEXT = 3
68+
INDEX = 4
6969
MANY_CHILDREN = 5
7070

7171

0 commit comments

Comments
 (0)