Files
codeql/csharp/extractor/Semmle.Extraction.CSharp/Entities/IExpressionParentEntity.cs
2021-02-15 10:17:07 +01:00

11 lines
272 B
C#

namespace Semmle.Extraction.CSharp.Entities
{
public interface IExpressionParentEntity : IEntity
{
/// <summary>
/// Whether this entity is the parent of a top-level expression.
/// </summary>
bool IsTopLevelParent { get; }
}
}