mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
20 lines
542 B
C#
20 lines
542 B
C#
using Semmle.Extraction.Kinds;
|
|
using Microsoft.CodeAnalysis.CSharp.Syntax;
|
|
using System;
|
|
using System.IO;
|
|
|
|
namespace Semmle.Extraction.CSharp.Entities.Expressions
|
|
{
|
|
class ArgList : Expression<ExpressionSyntax>
|
|
{
|
|
ArgList(ExpressionNodeInfo info) : base(info.SetKind(ExprKind.UNKNOWN)) { }
|
|
|
|
protected override void PopulateExpression(TextWriter trapFile)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public static ArgList Create(ExpressionNodeInfo info) => new ArgList(info);
|
|
}
|
|
}
|