Unity.IL2CPP.Labeler.AddJumpLabel C# (CSharp) Method

AddJumpLabel() private method

private AddJumpLabel ( Instruction ins, Instruction targetInstruction ) : void
ins Mono.Cecil.Cil.Instruction
targetInstruction Mono.Cecil.Cil.Instruction
return void
        private void AddJumpLabel(Instruction ins, Instruction targetInstruction)
        {
            List<Instruction> list;
            if (!this._jumpMap.TryGetValue(targetInstruction, out list))
            {
                this._jumpMap.Add(targetInstruction, list = new List<Instruction>());
            }
            list.Add(ins);
        }