mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
51 lines
1.7 KiB
C#
51 lines
1.7 KiB
C#
using System.IO;
|
|
using Semmle.Util;
|
|
|
|
namespace Semmle.Extraction.CSharp.Entities
|
|
{
|
|
internal class CommentBlock : CachedEntity<Comments.CommentBlock>
|
|
{
|
|
private CommentBlock(Context cx, Comments.CommentBlock init)
|
|
: base(cx, init) { }
|
|
|
|
public override void Populate(TextWriter trapFile)
|
|
{
|
|
if (Context.OnlyScaffold)
|
|
{
|
|
return;
|
|
}
|
|
trapFile.commentblock(this);
|
|
Symbol.CommentLines.ForEach((l, child) => trapFile.commentblock_child(this, l, child));
|
|
WriteLocationToTrap(trapFile.commentblock_location, this, Context.CreateLocation(Symbol.Location));
|
|
}
|
|
|
|
public override bool NeedsPopulation => true;
|
|
|
|
public override void WriteId(EscapingTextWriter trapFile)
|
|
{
|
|
trapFile.WriteSubId(Context.CreateLocation(Symbol.Location));
|
|
trapFile.Write(";commentblock");
|
|
}
|
|
|
|
public override Microsoft.CodeAnalysis.Location ReportingLocation => Symbol.Location;
|
|
|
|
public void BindTo(Label entity, CommentBinding binding)
|
|
{
|
|
if (Context.OnlyScaffold)
|
|
{
|
|
return;
|
|
}
|
|
Context.TrapWriter.Writer.commentblock_binding(this, entity, binding);
|
|
}
|
|
|
|
public static CommentBlock Create(Context cx, Comments.CommentBlock block) => CommentBlockFactory.Instance.CreateEntity(cx, block, block);
|
|
|
|
private class CommentBlockFactory : CachedEntityFactory<Comments.CommentBlock, CommentBlock>
|
|
{
|
|
public static CommentBlockFactory Instance { get; } = new CommentBlockFactory();
|
|
|
|
public override CommentBlock Create(Context cx, Comments.CommentBlock init) => new CommentBlock(cx, init);
|
|
}
|
|
}
|
|
}
|