19 instantiations of UnitTestingInvocationReasonsWrapper
Microsoft.CodeAnalysis.Workspaces (19)
ExternalAccess\UnitTesting\Api\UnitTestingInvocationReasonsWrapper.cs (16)
12
public static readonly UnitTestingInvocationReasonsWrapper SemanticChanged =
new
(InvocationReasons.SemanticChanged);
13
public static readonly UnitTestingInvocationReasonsWrapper Reanalyze =
new
(InvocationReasons.Reanalyze);
14
public static readonly UnitTestingInvocationReasonsWrapper ProjectConfigurationChanged =
new
(InvocationReasons.ProjectConfigurationChanged);
15
public static readonly UnitTestingInvocationReasonsWrapper SyntaxChanged =
new
(InvocationReasons.SyntaxChanged);
16
public static readonly UnitTestingInvocationReasonsWrapper PredefinedDocumentAdded =
new
(PredefinedInvocationReasons.DocumentAdded);
17
public static readonly UnitTestingInvocationReasonsWrapper PredefinedReanalyze =
new
(PredefinedInvocationReasons.Reanalyze);
18
public static readonly UnitTestingInvocationReasonsWrapper PredefinedSemanticChanged =
new
(PredefinedInvocationReasons.SemanticChanged);
19
public static readonly UnitTestingInvocationReasonsWrapper PredefinedSyntaxChanged =
new
(PredefinedInvocationReasons.SyntaxChanged);
20
public static readonly UnitTestingInvocationReasonsWrapper PredefinedProjectConfigurationChanged =
new
(PredefinedInvocationReasons.ProjectConfigurationChanged);
21
public static readonly UnitTestingInvocationReasonsWrapper PredefinedDocumentOpened =
new
(PredefinedInvocationReasons.DocumentOpened);
22
public static readonly UnitTestingInvocationReasonsWrapper PredefinedDocumentClosed =
new
(PredefinedInvocationReasons.DocumentClosed);
23
public static readonly UnitTestingInvocationReasonsWrapper PredefinedDocumentRemoved =
new
(PredefinedInvocationReasons.DocumentRemoved);
24
public static readonly UnitTestingInvocationReasonsWrapper PredefinedHighPriority =
new
(PredefinedInvocationReasons.HighPriority);
25
public static readonly UnitTestingInvocationReasonsWrapper PredefinedProjectParseOptionsChanged =
new
(PredefinedInvocationReasons.ProjectParseOptionsChanged);
26
public static readonly UnitTestingInvocationReasonsWrapper PredefinedSolutionRemoved =
new
(PredefinedInvocationReasons.SolutionRemoved);
37
=>
new
(reason.UnderlyingObject.With(UnderlyingObject));
ExternalAccess\UnitTesting\UnitTestingIncrementalAnalyzer.cs (3)
23
=> _implementation.AnalyzeDocumentAsync(document, bodyOpt, new
UnitTestingInvocationReasonsWrapper
(reasons), cancellationToken);
26
=> _implementation.AnalyzeProjectAsync(project, semanticsChanged, new
UnitTestingInvocationReasonsWrapper
(reasons), cancellationToken);
29
=> _implementation.AnalyzeSyntaxAsync(document, new
UnitTestingInvocationReasonsWrapper
(reasons), cancellationToken);
20 references to UnitTestingInvocationReasonsWrapper
Microsoft.CodeAnalysis.Workspaces (20)
ExternalAccess\UnitTesting\Api\IUnitTestingIncrementalAnalyzerImplementation.cs (3)
19
Task AnalyzeSyntaxAsync(Document document,
UnitTestingInvocationReasonsWrapper
reasons, CancellationToken cancellationToken);
20
Task AnalyzeDocumentAsync(Document document, SyntaxNode bodyOpt,
UnitTestingInvocationReasonsWrapper
reasons, CancellationToken cancellationToken);
21
Task AnalyzeProjectAsync(Project project, bool semanticsChanged,
UnitTestingInvocationReasonsWrapper
reasons, CancellationToken cancellationToken);
ExternalAccess\UnitTesting\Api\UnitTestingInvocationReasonsWrapper.cs (17)
12
public static readonly
UnitTestingInvocationReasonsWrapper
SemanticChanged = new(InvocationReasons.SemanticChanged);
13
public static readonly
UnitTestingInvocationReasonsWrapper
Reanalyze = new(InvocationReasons.Reanalyze);
14
public static readonly
UnitTestingInvocationReasonsWrapper
ProjectConfigurationChanged = new(InvocationReasons.ProjectConfigurationChanged);
15
public static readonly
UnitTestingInvocationReasonsWrapper
SyntaxChanged = new(InvocationReasons.SyntaxChanged);
16
public static readonly
UnitTestingInvocationReasonsWrapper
PredefinedDocumentAdded = new(PredefinedInvocationReasons.DocumentAdded);
17
public static readonly
UnitTestingInvocationReasonsWrapper
PredefinedReanalyze = new(PredefinedInvocationReasons.Reanalyze);
18
public static readonly
UnitTestingInvocationReasonsWrapper
PredefinedSemanticChanged = new(PredefinedInvocationReasons.SemanticChanged);
19
public static readonly
UnitTestingInvocationReasonsWrapper
PredefinedSyntaxChanged = new(PredefinedInvocationReasons.SyntaxChanged);
20
public static readonly
UnitTestingInvocationReasonsWrapper
PredefinedProjectConfigurationChanged = new(PredefinedInvocationReasons.ProjectConfigurationChanged);
21
public static readonly
UnitTestingInvocationReasonsWrapper
PredefinedDocumentOpened = new(PredefinedInvocationReasons.DocumentOpened);
22
public static readonly
UnitTestingInvocationReasonsWrapper
PredefinedDocumentClosed = new(PredefinedInvocationReasons.DocumentClosed);
23
public static readonly
UnitTestingInvocationReasonsWrapper
PredefinedDocumentRemoved = new(PredefinedInvocationReasons.DocumentRemoved);
24
public static readonly
UnitTestingInvocationReasonsWrapper
PredefinedHighPriority = new(PredefinedInvocationReasons.HighPriority);
25
public static readonly
UnitTestingInvocationReasonsWrapper
PredefinedProjectParseOptionsChanged = new(PredefinedInvocationReasons.ProjectParseOptionsChanged);
26
public static readonly
UnitTestingInvocationReasonsWrapper
PredefinedSolutionRemoved = new(PredefinedInvocationReasons.SolutionRemoved);
36
public
UnitTestingInvocationReasonsWrapper
With(
UnitTestingInvocationReasonsWrapper
reason)