mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
18 lines
511 B
C#
18 lines
511 B
C#
using Microsoft.CodeAnalysis.CSharp.Syntax;
|
|
using Semmle.Extraction.Kinds;
|
|
|
|
namespace Semmle.Extraction.CSharp.Entities.Expressions
|
|
{
|
|
class Default : Expression<DefaultExpressionSyntax>
|
|
{
|
|
Default(ExpressionNodeInfo info) : base(info.SetKind(ExprKind.DEFAULT)) { }
|
|
|
|
public static Expression Create(ExpressionNodeInfo info) => new Default(info).TryPopulate();
|
|
|
|
protected override void Populate()
|
|
{
|
|
TypeAccess.Create(cx, Syntax.Type, this, 0);
|
|
}
|
|
}
|
|
}
|