Skip to content

Commit 992c089

Browse files
committed
WIP
1 parent 6984910 commit 992c089

File tree

8 files changed

+7
-52
lines changed

8 files changed

+7
-52
lines changed

EasySourceGenerators.GeneratorTests/GeneratesMethodExecutionRuntimeTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Reflection;
33
using EasySourceGenerators.Abstractions;
44
using EasySourceGenerators.Generators;
5-
using EasySourceGenerators.Generators.OldGenerators;
5+
using EasySourceGenerators.Generators.IncrementalGenerators;
66
using Microsoft.CodeAnalysis;
77
using Microsoft.CodeAnalysis.CSharp;
88

EasySourceGenerators.GeneratorTests/GeneratorTestHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using Microsoft.CodeAnalysis;
44
using Microsoft.CodeAnalysis.CSharp;
55
using EasySourceGenerators.Generators;
6-
using EasySourceGenerators.Generators.OldGenerators;
6+
using EasySourceGenerators.Generators.IncrementalGenerators;
77

88
namespace EasySourceGenerators.GeneratorTests;
99

EasySourceGenerators.Generators/OldGenerators/GeneratesMethodExecutionRuntime.cs renamed to EasySourceGenerators.Generators/IncrementalGenerators/GeneratesMethodExecutionRuntime.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
using Microsoft.CodeAnalysis.CSharp.Syntax;
1212
using Microsoft.CodeAnalysis.Emit;
1313

14-
namespace EasySourceGenerators.Generators.OldGenerators;
14+
namespace EasySourceGenerators.Generators.IncrementalGenerators;
1515

1616
internal sealed record SwitchBodyData(
1717
IReadOnlyList<(object key, string value)> CasePairs,

EasySourceGenerators.Generators/OldGenerators/GeneratesMethodGenerationPipeline.cs renamed to EasySourceGenerators.Generators/IncrementalGenerators/GeneratesMethodGenerationPipeline.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using Microsoft.CodeAnalysis.Text;
77
using static EasySourceGenerators.Generators.Consts;
88

9-
namespace EasySourceGenerators.Generators.OldGenerators;
9+
namespace EasySourceGenerators.Generators.IncrementalGenerators;
1010

1111
internal static class GeneratesMethodGenerationPipeline
1212
{

EasySourceGenerators.Generators/OldGenerators/GeneratesMethodGenerationTargetCollector.cs renamed to EasySourceGenerators.Generators/IncrementalGenerators/GeneratesMethodGenerationTargetCollector.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using Microsoft.CodeAnalysis.CSharp.Syntax;
88
using static EasySourceGenerators.Generators.Consts;
99

10-
namespace EasySourceGenerators.Generators.OldGenerators;
10+
namespace EasySourceGenerators.Generators.IncrementalGenerators;
1111

1212
internal sealed record GeneratesMethodGenerationTarget(
1313
MethodDeclarationSyntax Syntax,

EasySourceGenerators.Generators/OldGenerators/GeneratesMethodGenerator.cs renamed to EasySourceGenerators.Generators/IncrementalGenerators/GeneratesMethodGenerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using Microsoft.CodeAnalysis;
66
using Microsoft.CodeAnalysis.CSharp.Syntax;
77

8-
namespace EasySourceGenerators.Generators.OldGenerators;
8+
namespace EasySourceGenerators.Generators.IncrementalGenerators;
99

1010
[Generator]
1111
public sealed class GeneratesMethodGenerator : IIncrementalGenerator

EasySourceGenerators.Generators/OldGenerators/GeneratesMethodPatternSourceBuilder.cs renamed to EasySourceGenerators.Generators/IncrementalGenerators/GeneratesMethodPatternSourceBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using Microsoft.CodeAnalysis;
44
using Microsoft.CodeAnalysis.CSharp;
55

6-
namespace EasySourceGenerators.Generators.OldGenerators;
6+
namespace EasySourceGenerators.Generators.IncrementalGenerators;
77

88
internal static class GeneratesMethodPatternSourceBuilder
99
{

EasySourceGenerators.Generators/IncrementalGenerators/MethodGenerator.cs

Lines changed: 0 additions & 45 deletions
This file was deleted.

0 commit comments

Comments
 (0)