Beispiel #1
0
        internal TryCatchFinallyCoderBase(InstructionBlock instructionBlock, InstructionMarker instructionMarker) : base(instructionBlock)
        {
            this.markers = new List <InstructionMarker>();

            if (instructionMarker != null)
            {
                this.markers.Add(instructionMarker);
            }
        }
Beispiel #2
0
        internal TryCatchFinallyCoderBase(TryCatchFinallyCoderBase tryCatchFinallyCoderBase, InstructionMarker instructionMarker) : base(tryCatchFinallyCoderBase.instructions)
        {
            this.markers = tryCatchFinallyCoderBase.markers;

            if (instructionMarker != null)
            {
                this.markers.Add(instructionMarker);
            }
        }