@@ -67,19 +67,23 @@ private static void GenerateProperty(
67
67
builder . AppendLine ( $ "var oldValue = { p . BackingFieldName } ;") ;
68
68
}
69
69
70
+ var nameofName = p . Name . EnsureNameofContent ( ) ;
71
+
70
72
builder . AppendLine ( $ "{ p . BackingFieldName } = value;") ;
71
- builder . AppendLine ( $ "RaisePropertyChanged(nameof( { p . Name } ) );") ;
73
+ builder . AppendLine ( $ "RaisePropertyChanged({ nameofName } );") ;
72
74
if ( p . PropertyNamesToInvalidate is not null )
73
75
{
74
76
foreach ( var propertyNameToInvalidate in p . PropertyNamesToInvalidate )
75
77
{
76
- builder . AppendLine ( $ "RaisePropertyChanged(nameof({ propertyNameToInvalidate } ));") ;
78
+ var nameofPropertyNameToInvalidate = propertyNameToInvalidate . EnsureNameofContent ( ) ;
79
+
80
+ builder . AppendLine ( $ "RaisePropertyChanged({ nameofPropertyNameToInvalidate } );") ;
77
81
}
78
82
}
79
83
80
84
if ( p . BroadcastOnChange )
81
85
{
82
- builder . AppendLine ( $ "Broadcast(nameof( { p . Name } ) , oldValue, value);") ;
86
+ builder . AppendLine ( $ "Broadcast({ nameofName } , oldValue, value);") ;
83
87
}
84
88
85
89
if ( p . AfterChangedCallback is not null )
@@ -101,7 +105,24 @@ private static void GenerateCallbackInlineCode(
101
105
if ( value . StartsWith ( "nameof(" , StringComparison . Ordinal ) &&
102
106
value . EndsWith ( ")" , StringComparison . Ordinal ) )
103
107
{
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
+ }
105
126
}
106
127
else
107
128
{
0 commit comments