19 implementations of Execute
Microsoft.CodeAnalysis (1)
SourceGeneration\IncrementalWrapper.cs (1)
29void ISourceGenerator.Execute(GeneratorExecutionContext context) => throw ExceptionUtilities.Unreachable();
Microsoft.CodeAnalysis.CSharp.CommandLine.UnitTests (2)
CommandLineTests.cs (2)
13866public void Execute(GeneratorExecutionContext context) => throw new System.Exception("THROW"); 13911public void Execute(GeneratorExecutionContext context) { }
Microsoft.CodeAnalysis.EditorFeatures2.UnitTests (1)
Rename\CSharp\SourceGeneratorTests.vb (1)
85Public Sub Execute(context As GeneratorExecutionContext) Implements ISourceGenerator.Execute
Microsoft.CodeAnalysis.Rebuild.UnitTests (2)
DeterministicKeyBuilderTests.Helpers.cs (2)
46public void Execute(GeneratorExecutionContext context) => throw new NotImplementedException(); 53public void Execute(GeneratorExecutionContext context) => throw new NotImplementedException();
Microsoft.CodeAnalysis.Test.Utilities (4)
SourceGeneration\TestGenerators.cs (3)
35public void Execute(GeneratorExecutionContext context) 65public void Execute(GeneratorExecutionContext context) 91public void Execute(GeneratorExecutionContext context)
SourceGeneration\TestSourceGenerator.cs (1)
17public void Execute(GeneratorExecutionContext context)
Microsoft.CodeAnalysis.TestAnalyzerReference (1)
HelloWorldGenerator.cs (1)
21public void Execute(GeneratorExecutionContext context)
Microsoft.CodeAnalysis.UnitTests (6)
Analyzers\AnalyzerFileReferenceTests.cs (6)
619public void Execute(GeneratorExecutionContext context) => throw new NotImplementedException(); 635public void Execute(GeneratorExecutionContext context) => throw new NotImplementedException(); 685public void Execute(GeneratorExecutionContext context) => throw new NotImplementedException(); 691public void Execute(GeneratorExecutionContext context) => throw new NotImplementedException(); 698public virtual void Execute(GeneratorExecutionContext context) => throw new NotImplementedException(); 740public void Execute(GeneratorExecutionContext context) => throw new NotImplementedException();
Microsoft.CodeAnalysis.VisualBasic.Semantic.UnitTests (2)
SourceGeneration\GeneratorDriverTests.vb (2)
438Public Sub Execute(context As GeneratorExecutionContext) Implements ISourceGenerator.Execute 490Public Sub Execute(context As GeneratorExecutionContext) Implements ISourceGenerator.Execute
10 references to Execute
Microsoft.CodeAnalysis (7)
SourceGeneration\GeneratorAdaptor.cs (1)
55SourceGenerator.Execute(generatorExecutionContext);
SourceGeneration\GeneratorContexts.cs (4)
16/// Context passed to a source generator when <see cref="ISourceGenerator.Execute(GeneratorExecutionContext)"/> is called 145/// During <see cref="ISourceGenerator.Execute(GeneratorExecutionContext)"/> the generator can obtain the <see cref="ISyntaxReceiver"/> instance that was 167/// During <see cref="ISourceGenerator.Execute(GeneratorExecutionContext)"/> the generator can obtain the <see cref="ISyntaxContextReceiver"/> instance that was 171/// A new instance of <see cref="ISyntaxContextReceiver"/> is created prior to every call to <see cref="ISourceGenerator.Execute(GeneratorExecutionContext)"/>,
SourceGeneration\ISyntaxReceiver.cs (2)
19/// <see cref="ISourceGenerator.Execute(GeneratorExecutionContext)"/> the generator can obtain the 59/// During <see cref="ISourceGenerator.Execute(GeneratorExecutionContext)"/> the generator can obtain the
Microsoft.CodeAnalysis.EditorFeatures2.UnitTests (1)
Rename\CSharp\SourceGeneratorTests.vb (1)
85Public Sub Execute(context As GeneratorExecutionContext) Implements ISourceGenerator.Execute
Microsoft.CodeAnalysis.VisualBasic.Semantic.UnitTests (2)
SourceGeneration\GeneratorDriverTests.vb (2)
438Public Sub Execute(context As GeneratorExecutionContext) Implements ISourceGenerator.Execute 490Public Sub Execute(context As GeneratorExecutionContext) Implements ISourceGenerator.Execute