Exemplo n.º 1
0
 public ElseEndBlock(LFunction function, int begin, int end)
     : base(function, begin, end)
 {
     m_statements = new List <Statement>(end - begin + 1);
 }
Exemplo n.º 2
0
 public Code(LFunction function)
 {
     code = function.Code;
     map  = function.Header.Version.GetOpcodeMap();
 }
Exemplo n.º 3
0
 public CompareBlock(LFunction function, int begin, int end, int target, Branch branch)
     : base(function, begin, end)
 {
     Target = target;
     Branch = branch;
 }
Exemplo n.º 4
0
 public IfThenEndBlock(LFunction function, Branch branch, Registers r)
     : this(function, branch, null, r)
 {
 }
Exemplo n.º 5
0
 public Break(LFunction function, int line, int target)
     : base(function, line, line)
 {
     Target = target;
 }
Exemplo n.º 6
0
 public OuterBlock(LFunction function, int length)
     : base(function, 0, length + 1)
 {
     m_statements = new List <Statement>(length);
 }