コード例 #1
0
ファイル: Item.cs プロジェクト: belav/roslyn
 public Item(
     Id <Vertex> outVertex,
     Id <Range> range,
     Id <LsifDocument> document,
     IdFactory idFactory,
     string?property = null
     ) : base(label: "item", outVertex, new[] { range.As <Range, Vertex>() }, idFactory)
 {
     Document = document;
     Property = property;
 }