Endjin.Assembly.ChangeDetection.Introspection.PdbInformationReader.HasValidFileAndLineNumber C# (CSharp) Method

HasValidFileAndLineNumber() private method

private HasValidFileAndLineNumber ( Instruction ins ) : bool
ins Mono.Cecil.Cil.Instruction
return bool
        private bool HasValidFileAndLineNumber(Instruction ins)
        {
            bool lret = true;
            if (ins == null)
            {
                lret = false;
            }
            if (lret)
            {
                if (ins.SequencePoint == null)
                {
                    lret = false;
                }
            }

            if (lret)
            {
                if (ins.SequencePoint.StartLine == 0xfeefee)
                {
                    lret = false;
                }
            }

            return lret;
        }