Skip to content

Commit 1e822d8

Browse files
authored
Merge pull request #8744 from eeckstein/simplified-demangling
2 parents 0f56bfa + 789646a commit 1e822d8

37 files changed

+1118
-1074
lines changed

include/swift/Demangling/Demangle.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ namespace Demangle {
3434

3535
struct DemangleOptions {
3636
bool SynthesizeSugarOnTypes = false;
37-
bool DisplayTypeOfIVarFieldOffset = true;
3837
bool DisplayDebuggerGeneratedModule = true;
3938
bool QualifyEntities = true;
4039
bool DisplayExtensionContexts = true;
@@ -49,6 +48,7 @@ struct DemangleOptions {
4948
bool ShortenValueWitness = false;
5049
bool ShortenArchetype = false;
5150
bool ShowPrivateDiscriminators = true;
51+
bool ShowFunctionArgumentTypes = true;
5252

5353
DemangleOptions() {}
5454

@@ -68,6 +68,7 @@ struct DemangleOptions {
6868
Opt.ShortenValueWitness = true;
6969
Opt.ShortenArchetype = true;
7070
Opt.ShowPrivateDiscriminators = false;
71+
Opt.ShowFunctionArgumentTypes = false;
7172
return Opt;
7273
};
7374
};

0 commit comments

Comments
 (0)