Mono.Debugger.Backend.DwarfReader.DieMethodVariable.DoResolveType C# (CSharp) Method

DoResolveType() protected method

protected DoResolveType ( ) : bool
return bool
            protected bool DoResolveType()
            {
                if (type != null)
                    return true;

                if (TypeOffset == 0)
                    return false;
                DieType reference = comp_unit.GetType (TypeOffset);
                if (reference == null)
                    return false;

                type = reference.ResolveType ();
                return type != null;
            }