コード例 #1
0
 public SourceCodeLine(LSTLine Line)
 {
     this.SourceCode = Line.Source;
 }
コード例 #2
0
 public BytecodeLine(LSTLine Line, int SourceCodeLineIndex)
 {
     this.Address             = Line.Address;
     this.Command             = Line.Command;
     this.SourceCodeLineIndex = SourceCodeLineIndex;
 }