Mono.Debugger.Backend.DwarfReader.DieMember.read_location C# (CSharp) Method

read_location() private method

private read_location ( ) : bool
return bool
            bool read_location()
            {
                TargetBinaryReader locreader = new TargetBinaryReader (
                    location, target_info);

                switch (locreader.ReadByte ()) {
                case 0x23: // DW_OP_plus_uconstant
                    offset = locreader.ReadLeb128 ();
                    return locreader.IsEof;

                default:
                    return false;
                }
            }