Skip to content

Commit 7a06c69

Browse files
committed
fix(source-generators): namof issues
1 parent 207d457 commit 7a06c69

File tree

5 files changed

+73
-8
lines changed

5 files changed

+73
-8
lines changed

src/Atc.Wpf.SourceGenerators/Extensions/Builder/FrameworkElementBuilderExtensions.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ private static void GenerateDependencyPropertyHeader(
9191
builder.AppendLine($"public static readonly DependencyProperty {p.Name}Property = DependencyProperty.{registerMethod}(");
9292
builder.IncreaseIndent();
9393

94-
builder.AppendLine(isAttached ? $"\"{p.Name}\"," : $"nameof({p.Name}),");
94+
builder.AppendLine(isAttached ? $"\"{p.Name}\"," : $"{p.Name.EnsureNameofContent()},");
9595
builder.AppendLine($"typeof({p.Type}),");
9696
}
9797

src/Atc.Wpf.SourceGenerators/Extensions/Builder/ViewModelBuilderExtensions.cs

+25-4
Original file line numberDiff line numberDiff line change
@@ -67,19 +67,23 @@ private static void GenerateProperty(
6767
builder.AppendLine($"var oldValue = {p.BackingFieldName};");
6868
}
6969

70+
var nameofName = p.Name.EnsureNameofContent();
71+
7072
builder.AppendLine($"{p.BackingFieldName} = value;");
71-
builder.AppendLine($"RaisePropertyChanged(nameof({p.Name}));");
73+
builder.AppendLine($"RaisePropertyChanged({nameofName});");
7274
if (p.PropertyNamesToInvalidate is not null)
7375
{
7476
foreach (var propertyNameToInvalidate in p.PropertyNamesToInvalidate)
7577
{
76-
builder.AppendLine($"RaisePropertyChanged(nameof({propertyNameToInvalidate}));");
78+
var nameofPropertyNameToInvalidate = propertyNameToInvalidate.EnsureNameofContent();
79+
80+
builder.AppendLine($"RaisePropertyChanged({nameofPropertyNameToInvalidate});");
7781
}
7882
}
7983

8084
if (p.BroadcastOnChange)
8185
{
82-
builder.AppendLine($"Broadcast(nameof({p.Name}), oldValue, value);");
86+
builder.AppendLine($"Broadcast({nameofName}, oldValue, value);");
8387
}
8488

8589
if (p.AfterChangedCallback is not null)
@@ -101,7 +105,24 @@ private static void GenerateCallbackInlineCode(
101105
if (value.StartsWith("nameof(", StringComparison.Ordinal) &&
102106
value.EndsWith(")", StringComparison.Ordinal))
103107
{
104-
builder.AppendLine(value.ExtractInnerContent() + "();");
108+
var valueContent = value.ExtractInnerContent();
109+
var sa = valueContent.Split([';'], StringSplitOptions.RemoveEmptyEntries);
110+
foreach (var s in sa)
111+
{
112+
var line = s.Trim();
113+
if (line.EndsWith("();", StringComparison.Ordinal))
114+
{
115+
builder.AppendLine(line);
116+
}
117+
else if (line.EndsWith("()", StringComparison.Ordinal))
118+
{
119+
builder.AppendLine(line + ";");
120+
}
121+
else
122+
{
123+
builder.AppendLine(line + "();");
124+
}
125+
}
105126
}
106127
else
107128
{

src/Atc.Wpf.SourceGenerators/Extensions/CodeAnalysis/AttributeDataExtensions.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -94,14 +94,14 @@ public static string ExtractClassFirstArgumentType(
9494
arrayIndex++;
9595
result.Add(
9696
arrayIndex.ToString(CultureInfo.InvariantCulture),
97-
typedConstant.Value.ToString());
97+
$"nameof({typedConstant.Value})");
9898
}
9999
}
100100
else
101101
{
102102
result.Add(
103103
arg.Key,
104-
arg.Value.Value?.ToString());
104+
$"nameof({arg.Value.Value})");
105105
}
106106
}
107107

src/Atc.Wpf.SourceGenerators/Extensions/ObjectExtensions.cs

+21-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ namespace Atc.Wpf.SourceGenerators.Extensions;
22

33
internal static class ObjectExtensions
44
{
5+
[SuppressMessage("Design", "MA0051:Method is too long", Justification = "OK.")]
56
public static string? TransformDefaultValueIfNeeded(
67
this object? defaultValue,
78
string type)
@@ -11,7 +12,11 @@ internal static class ObjectExtensions
1112
return null;
1213
}
1314

14-
var strDefaultValue = defaultValue.ToString();
15+
var strDefaultValue = defaultValue
16+
.ToString()?
17+
.EnsureNoNameof()?
18+
.ToString() ?? string.Empty;
19+
1520
if (!type.IsSimpleType())
1621
{
1722
return strDefaultValue;
@@ -64,4 +69,19 @@ internal static class ObjectExtensions
6469

6570
return strDefaultValue;
6671
}
72+
73+
public static object? EnsureNoNameof(
74+
this object? value)
75+
{
76+
if (value is null ||
77+
!value.ToString().StartsWith("nameof", StringComparison.Ordinal))
78+
{
79+
return value;
80+
}
81+
82+
return value
83+
.ToString()
84+
.Replace("nameof(", string.Empty)
85+
.Replace(")", string.Empty);
86+
}
6787
}

src/Atc.Wpf.SourceGenerators/Extensions/StringExtensions.cs

+24
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,30 @@ public static class StringExtensions
2727
{ nameof(String), "string" },
2828
};
2929

30+
public static string EnsureNameofContent(
31+
this string value)
32+
{
33+
if (value is null)
34+
{
35+
throw new ArgumentNullException(nameof(value));
36+
}
37+
38+
if (!value.StartsWith("nameof(", StringComparison.Ordinal) ||
39+
!value.EndsWith(")", StringComparison.Ordinal))
40+
{
41+
return $"nameof({value})";
42+
}
43+
44+
if (value.StartsWith("nameof(nameof(", StringComparison.Ordinal))
45+
{
46+
value = value
47+
.Replace("nameof(nameof(", "nameof(")
48+
.Replace("))", ")");
49+
}
50+
51+
return value;
52+
}
53+
3054
public static string EnsureFirstCharacterToUpper(
3155
this string value)
3256
{

0 commit comments

Comments
 (0)