Skip to content

Commit 62dc23f

Browse files
committed
C#: Move the StandaloneAnalyser to the Standalone project.
1 parent efab3bf commit 62dc23f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

csharp/extractor/Semmle.Extraction.CSharp.Standalone/Extractor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ private static void AnalyseStandalone(
3434
references => GetResolvedReferencesStandalone(referencePaths, references),
3535
(analyser, syntaxTrees) => CSharp.Extractor.ReadSyntaxTrees(sources, analyser, null, null, syntaxTrees),
3636
(syntaxTrees, references) => CSharpCompilation.Create("csharp.dll", syntaxTrees, references),
37-
(compilation, options) => analyser.InitializeStandalone(compilation, options),
37+
(compilation, options) => analyser.Initialize(compilation, options),
3838
() => { },
3939
_ => { },
4040
() =>

csharp/extractor/Semmle.Extraction.CSharp/Extractor/StandaloneAnalyser.cs renamed to csharp/extractor/Semmle.Extraction.CSharp.Standalone/StandaloneAnalyser.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public StandaloneAnalyser(IProgressMonitor pm, ILogger logger, bool addAssemblyT
1111
{
1212
}
1313

14-
public void InitializeStandalone(CSharpCompilation compilationIn, CommonOptions options)
14+
public void Initialize(CSharpCompilation compilationIn, CommonOptions options)
1515
{
1616
compilation = compilationIn;
1717
layout = new Layout();

0 commit comments

Comments
 (0)