Ejemplo n.º 1
0
 public IlStructure(IlStructureType type, int startOffset, int endOffset, Instruction loopEntryPoint)
 {
     Debug.Assert(startOffset < endOffset);
     Type           = type;
     StartOffset    = startOffset;
     EndOffset      = endOffset;
     LoopEntryPoint = loopEntryPoint;
 }
Ejemplo n.º 2
0
 public IlStructure(IlStructureType type, int startOffset, int endOffset, ExceptionHandler handler = null)
 {
     Debug.Assert(startOffset < endOffset);
     Type             = type;
     StartOffset      = startOffset;
     EndOffset        = endOffset;
     ExceptionHandler = handler;
 }
Ejemplo n.º 3
0
		public IlStructure(IlStructureType type, int startOffset, int endOffset, ExceptionHandler handler = null)
		{
			Debug.Assert(startOffset < endOffset);
			Type = type;
			StartOffset = startOffset;
			EndOffset = endOffset;
			ExceptionHandler = handler;
		}
Ejemplo n.º 4
0
		public IlStructure(IlStructureType type, int startOffset, int endOffset, Instruction loopEntryPoint)
		{
			Debug.Assert(startOffset < endOffset);
			Type = type;
			StartOffset = startOffset;
			EndOffset = endOffset;
			LoopEntryPoint = loopEntryPoint;
		}