mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
17 lines
381 B
C#
17 lines
381 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Semmle.Extraction.CIL
|
|
{
|
|
/// <summary>
|
|
/// A CIL entity which has been extracted.
|
|
/// </summary>
|
|
internal interface IExtractedEntity : IExtractionProduct, IEntity
|
|
{
|
|
/// <summary>
|
|
/// The contents of the entity.
|
|
/// </summary>
|
|
|
|
IEnumerable<IExtractionProduct> Contents { get; }
|
|
}
|
|
}
|