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