mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
14 lines
430 B
C#
14 lines
430 B
C#
namespace Semmle.Extraction.CSharp
|
|
{
|
|
/// <summary>
|
|
/// Describes the relationship between a comment and a program element.
|
|
/// </summary>
|
|
public enum CommentBinding
|
|
{
|
|
Parent, // The parent element of a comment
|
|
Best, // The most likely element associated with a comment
|
|
Before, // The element before the comment
|
|
After // The element after the comment
|
|
}
|
|
}
|