mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
65 lines
2.5 KiB
C#
65 lines
2.5 KiB
C#
using Microsoft.CodeAnalysis;
|
|
using Microsoft.CodeAnalysis.CSharp;
|
|
using Microsoft.CodeAnalysis.CSharp.Syntax;
|
|
using Semmle.Util;
|
|
|
|
namespace Semmle.Extraction.CSharp.Populators
|
|
{
|
|
public static class MethodExtensions
|
|
{
|
|
class AstLineCounter : CSharpSyntaxVisitor<LineCounts>
|
|
{
|
|
public override LineCounts DefaultVisit(SyntaxNode node)
|
|
{
|
|
string text = node.SyntaxTree.GetText().GetSubText(node.GetLocation().SourceSpan).ToString();
|
|
return Semmle.Util.LineCounter.ComputeLineCounts(text);
|
|
}
|
|
|
|
public override LineCounts VisitMethodDeclaration(MethodDeclarationSyntax method)
|
|
{
|
|
return Visit(method.Identifier, method.Body ?? (SyntaxNode)method.ExpressionBody);
|
|
}
|
|
|
|
public LineCounts Visit(SyntaxToken identifier, SyntaxNode body)
|
|
{
|
|
int start = identifier.GetLocation().SourceSpan.Start;
|
|
int end = body.GetLocation().SourceSpan.End - 1;
|
|
|
|
var textSpan = new Microsoft.CodeAnalysis.Text.TextSpan(start, end - start);
|
|
|
|
string text = body.SyntaxTree.GetText().GetSubText(textSpan) + "\r\n";
|
|
return Semmle.Util.LineCounter.ComputeLineCounts(text);
|
|
}
|
|
|
|
public override LineCounts VisitConstructorDeclaration(ConstructorDeclarationSyntax method)
|
|
{
|
|
return Visit(method.Identifier, (SyntaxNode)method.Body ?? method.ExpressionBody);
|
|
}
|
|
|
|
public override LineCounts VisitDestructorDeclaration(DestructorDeclarationSyntax method)
|
|
{
|
|
return Visit(method.Identifier, (SyntaxNode)method.Body ?? method.ExpressionBody);
|
|
}
|
|
|
|
public override LineCounts VisitOperatorDeclaration(OperatorDeclarationSyntax node)
|
|
{
|
|
return Visit(node.OperatorToken, node.Body ?? (SyntaxNode)node.ExpressionBody);
|
|
}
|
|
}
|
|
|
|
public static void NumberOfLines(this Context cx, ISymbol symbol, IEntity callable)
|
|
{
|
|
foreach (var decl in symbol.DeclaringSyntaxReferences)
|
|
{
|
|
cx.NumberOfLines((CSharpSyntaxNode)decl.GetSyntax(), callable);
|
|
}
|
|
}
|
|
|
|
public static void NumberOfLines(this Context cx, CSharpSyntaxNode node, IEntity callable)
|
|
{
|
|
var lineCounts = node.Accept(new AstLineCounter());
|
|
cx.Emit(Tuples.numlines(callable, lineCounts));
|
|
}
|
|
}
|
|
}
|