1
1
using System ;
2
- using System . Linq ;
3
2
using Microsoft . CodeAnalysis ;
4
3
using Microsoft . CodeAnalysis . CSharp ;
5
4
using Microsoft . CodeAnalysis . CSharp . Syntax ;
@@ -15,7 +14,7 @@ namespace Stryker.Core.Mutants.CsharpNodeOrchestrators;
15
14
/// </summary>
16
15
/// <typeparam name="T">SyntaxNode type</typeparam>
17
16
/// <remarks>This class is helpful because there is no (useful) shared parent class for those syntax construct</remarks>
18
- internal abstract class BaseFunctionOrchestrator < T > : NodeSpecificOrchestrator < T , T > , IInstrumentCode where T : SyntaxNode
17
+ internal abstract class BaseFunctionOrchestrator < T > : MemberDefinitionOrchestrator < T > , IInstrumentCode where T : SyntaxNode
19
18
{
20
19
protected BaseFunctionOrchestrator ( ) => Marker = MutantPlacer . RegisterEngine ( this , true ) ;
21
20
@@ -24,20 +23,19 @@ internal abstract class BaseFunctionOrchestrator<T> : NodeSpecificOrchestrator<T
24
23
/// <inheritdoc/>
25
24
public string InstrumentEngineId => GetType ( ) . Name ;
26
25
27
- /// <inheritdoc/>
28
- protected override MutationContext PrepareContext ( T node , MutationContext context ) => base . PrepareContext ( node , context . Enter ( MutationControl . Member ) ) ;
29
-
30
- /// <inheritdoc/>
31
- protected override void RestoreContext ( MutationContext context ) => base . RestoreContext ( context . Leave ( ) ) ;
32
-
26
+ /// <summary>
27
+ /// Get the function body (block or expression)
28
+ /// </summary>
29
+ /// <param name="node"></param>
30
+ /// <returns>a tuple with the block body as first item and the expression body as the second. At least one of them is expected to be null.</returns>
33
31
protected abstract ( BlockSyntax block , ExpressionSyntax expression ) GetBodies ( T node ) ;
34
32
35
33
/// <summary>
36
34
/// Gets the parameter list of the function
37
35
/// </summary>
38
36
/// <param name="node">instance of <see cref="T"/></param>
39
37
/// <returns>a parameter list</returns>
40
- protected abstract ParameterListSyntax Parameters ( T node ) ;
38
+ protected abstract ParameterListSyntax ParameterList ( T node ) ;
41
39
42
40
/// <summary>
43
41
/// Get the return type
@@ -51,6 +49,7 @@ internal abstract class BaseFunctionOrchestrator<T> : NodeSpecificOrchestrator<T
51
49
/// </summary>
52
50
/// <param name="node">instance of <see cref="T"/></param>
53
51
/// <param name="blockBody">desired body</param>
52
+ /// <param name="expressionBody">desired expression body</param>
54
53
/// <returns>an instance of <typeparamref name="T"/> with <paramref name="blockBody"/> body</returns>
55
54
protected abstract T SwitchToThisBodies ( T node , BlockSyntax blockBody , ExpressionSyntax expressionBody ) ;
56
55
@@ -76,6 +75,7 @@ protected T ConvertToBlockBody(T node, TypeSyntax returnType)
76
75
var blockBody = GenerateBlockBody ( expression , returnType ) ;
77
76
return SwitchToThisBodies ( node , blockBody , null ) . WithAdditionalAnnotations ( Marker ) ;
78
77
}
78
+
79
79
/// <inheritdoc/>
80
80
public SyntaxNode RemoveInstrumentation ( SyntaxNode node )
81
81
{
@@ -105,7 +105,7 @@ protected override T InjectMutations(T sourceNode, T targetNode, SemanticModel s
105
105
}
106
106
var wasInExpressionForm = GetBodies ( sourceNode ) . expression != null ;
107
107
var returnType = ReturnType ( sourceNode ) ;
108
- var parameters = Parameters ( sourceNode ) . Parameters ;
108
+ var parameters = ParameterList ( sourceNode ) . Parameters ;
109
109
110
110
// no mutations to inject
111
111
if ( ! context . HasLeftOverMutations )
0 commit comments