mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
61 lines
2.1 KiB
C#
61 lines
2.1 KiB
C#
using Microsoft.CodeAnalysis;
|
|
using Microsoft.CodeAnalysis.CSharp.Syntax;
|
|
using Semmle.Extraction.CSharp.Populators;
|
|
using System.Linq;
|
|
|
|
namespace Semmle.Extraction.CSharp.Entities
|
|
{
|
|
class OrdinaryMethod : Method
|
|
{
|
|
OrdinaryMethod(Context cx, IMethodSymbol init)
|
|
: base(cx, init) { }
|
|
|
|
public override string Name => symbol.GetName();
|
|
|
|
public IMethodSymbol SourceDeclaration
|
|
{
|
|
get
|
|
{
|
|
var reducedFrom = symbol.ReducedFrom ?? symbol;
|
|
return reducedFrom.OriginalDefinition;
|
|
}
|
|
}
|
|
|
|
public override Microsoft.CodeAnalysis.Location ReportingLocation => symbol.GetSymbolLocation();
|
|
|
|
public override void Populate()
|
|
{
|
|
PopulateMethod();
|
|
ExtractModifiers();
|
|
ContainingType.ExtractGenerics();
|
|
|
|
var returnType = Type.Create(Context, symbol.ReturnType);
|
|
Context.Emit(Tuples.methods(this, Name, ContainingType, returnType.TypeRef, OriginalDefinition));
|
|
|
|
if (IsSourceDeclaration)
|
|
foreach (var declaration in symbol.DeclaringSyntaxReferences.Select(s => s.GetSyntax()).OfType<MethodDeclarationSyntax>())
|
|
{
|
|
Context.BindComments(this, declaration.Identifier.GetLocation());
|
|
TypeMention.Create(Context, declaration.ReturnType, this, returnType);
|
|
}
|
|
|
|
foreach (var l in Locations)
|
|
Context.Emit(Tuples.method_location(this, l));
|
|
|
|
ExtractGenerics();
|
|
Overrides();
|
|
ExtractRefReturn();
|
|
ExtractCompilerGenerated();
|
|
}
|
|
|
|
public new static OrdinaryMethod Create(Context cx, IMethodSymbol method) => OrdinaryMethodFactory.Instance.CreateEntity(cx, method);
|
|
|
|
class OrdinaryMethodFactory : ICachedEntityFactory<IMethodSymbol, OrdinaryMethod>
|
|
{
|
|
public static readonly OrdinaryMethodFactory Instance = new OrdinaryMethodFactory();
|
|
|
|
public OrdinaryMethod Create(Context cx, IMethodSymbol init) => new OrdinaryMethod(cx, init);
|
|
}
|
|
}
|
|
}
|