Skip to content

Commit 657c697

Browse files
authored
Merge pull request #1026 from CommunityToolkit/dev/fix-body-expressions
Handle semi-auto properties with expression bodies
2 parents ef36a6d + 3c720dd commit 657c697

File tree

2 files changed

+27
-2
lines changed

2 files changed

+27
-2
lines changed

src/CommunityToolkit.Mvvm.SourceGenerators/Diagnostics/Analyzers/UseObservablePropertyOnSemiAutoPropertyAnalyzer.cs

+6-2
Original file line numberDiff line numberDiff line change
@@ -249,8 +249,12 @@ public override void Initialize(AnalysisContext context)
249249
}
250250

251251
// Check that either of them is a semicolon token 'get;' accessor (it can be in either position)
252-
if (firstAccessor.IsKind(SyntaxKind.GetAccessorDeclaration) && firstAccessor.SemicolonToken.IsKind(SyntaxKind.SemicolonToken) ||
253-
secondAccessor.IsKind(SyntaxKind.GetAccessorDeclaration) && secondAccessor.SemicolonToken.IsKind(SyntaxKind.SemicolonToken))
252+
if (firstAccessor.IsKind(SyntaxKind.GetAccessorDeclaration) &&
253+
firstAccessor.SemicolonToken.IsKind(SyntaxKind.SemicolonToken) &&
254+
firstAccessor.ExpressionBody is null ||
255+
secondAccessor.IsKind(SyntaxKind.GetAccessorDeclaration) &&
256+
secondAccessor.SemicolonToken.IsKind(SyntaxKind.SemicolonToken) &&
257+
secondAccessor.ExpressionBody is null)
254258
{
255259
validFlags[0] = true;
256260
}

tests/CommunityToolkit.Mvvm.SourceGenerators.Roslyn4120.UnitTests/Test_SourceGeneratorsDiagnostics.cs

+21
Original file line numberDiff line numberDiff line change
@@ -1403,6 +1403,27 @@ public string Name
14031403
await CSharpAnalyzerWithLanguageVersionTest<UseObservablePropertyOnSemiAutoPropertyAnalyzer>.VerifyAnalyzerAsync(source, LanguageVersion.Preview);
14041404
}
14051405

1406+
[TestMethod]
1407+
public async Task UseObservablePropertyOnSemiAutoPropertyAnalyzer_GetAccessorWithExpressionBody_DoesNotWarn()
1408+
{
1409+
const string source = """
1410+
using CommunityToolkit.Mvvm.ComponentModel;
1411+
1412+
namespace MyApp;
1413+
1414+
public partial class SampleViewModel : ObservableObject
1415+
{
1416+
public string Name
1417+
{
1418+
get => "Hello world";
1419+
set => SetProperty(ref field, value);
1420+
}
1421+
}
1422+
""";
1423+
1424+
await CSharpAnalyzerWithLanguageVersionTest<UseObservablePropertyOnSemiAutoPropertyAnalyzer>.VerifyAnalyzerAsync(source, LanguageVersion.Preview);
1425+
}
1426+
14061427
[TestMethod]
14071428
public async Task UseObservablePropertyOnSemiAutoPropertyAnalyzer_ValidProperty_Warns()
14081429
{

0 commit comments

Comments
 (0)