Beispiel #1
0
 public BooleanIndicator(LFunction function, int line)
     : base(function, line, line)
 {
 }
Beispiel #2
0
 public AlwaysLoop(LFunction function, int begin, int end)
     : base(function, begin, end)
 {
     m_statements = new List <Statement>();
 }
Beispiel #3
0
 public OuterBlock(LFunction function, int length)
     : base(function, 0, length + 1)
 {
     m_statements = new List <Statement>(length);
 }
Beispiel #4
0
 public Break(LFunction function, int line, int target)
     : base(function, line, line)
 {
     Target = target;
 }
Beispiel #5
0
 public CompareBlock(LFunction function, int begin, int end, int target, Branch branch)
     : base(function, begin, end)
 {
     Target = target;
     Branch = branch;
 }
Beispiel #6
0
 public DoEndBlock(LFunction function, int begin, int end)
     : base(function, begin, end)
 {
     m_statements = new List <Statement>(end - begin + 1);
 }