mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
19 lines
373 B
C#
19 lines
373 B
C#
using System.IO;
|
|
|
|
namespace Semmle.Extraction
|
|
{
|
|
public abstract class LabelledEntity : Entity
|
|
{
|
|
protected LabelledEntity(Context cx) : base(cx)
|
|
{
|
|
}
|
|
|
|
public override void WriteQuotedId(TextWriter trapFile)
|
|
{
|
|
trapFile.Write("@\"");
|
|
WriteId(trapFile);
|
|
trapFile.Write('\"');
|
|
}
|
|
}
|
|
}
|