mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
19 lines
582 B
C#
19 lines
582 B
C#
using System.IO; // lgtm[cs/similar-file]
|
|
using Microsoft.CodeAnalysis.CSharp.Syntax;
|
|
using Semmle.Extraction.Kinds;
|
|
|
|
namespace Semmle.Extraction.CSharp.Entities.Expressions
|
|
{
|
|
internal class Ref : Expression<RefExpressionSyntax>
|
|
{
|
|
private Ref(ExpressionNodeInfo info) : base(info.SetKind(ExprKind.REF)) { }
|
|
|
|
public static Expression Create(ExpressionNodeInfo info) => new Ref(info).TryPopulate();
|
|
|
|
protected override void PopulateExpression(TextWriter trapFile)
|
|
{
|
|
Create(Context, Syntax.Expression, this, 0);
|
|
}
|
|
}
|
|
}
|