Пример #1
0
 public CodePiece(string Text, int StartLocation, int EndLocation, InstructionFramework Framework)
 {
     this.Text = Text;
     this.StartLocation = StartLocation;
     this.EndLocation = EndLocation;
     this.Framework = Framework;
     ChildPieces = new List<CodePiece>();
 }
Пример #2
0
 public CodePiece(string Text, int StartLocation, int EndLocation)
 {
     this.Text = Text;
     this.StartLocation = StartLocation;
     this.EndLocation = EndLocation;
     Framework = null;
     ChildPieces = new List<CodePiece>();
 }