mirror of
https://github.com/github/codeql.git
synced 2026-01-07 19:50:22 +01:00
19 lines
427 B
C#
19 lines
427 B
C#
using System.Collections.Generic;
|
|
using System.Reflection.Metadata;
|
|
using System.Linq;
|
|
|
|
namespace Semmle.Extraction.PDB
|
|
{
|
|
public class Method
|
|
{
|
|
public IEnumerable<SequencePoint> SequencePoints { get; }
|
|
|
|
public Method(IEnumerable<SequencePoint> sequencePoints)
|
|
{
|
|
SequencePoints = sequencePoints;
|
|
}
|
|
|
|
public Location Location => SequencePoints.First().Location;
|
|
}
|
|
}
|