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

DoResolve() protected method

protected DoResolve ( ) : bool
return bool
            protected bool DoResolve()
            {
                if (!DoResolveType ())
                    return false;

                if ((Name == null) || (subprog == null) || (location_attr == null))
                    return false;

                DwarfLocation location = new DwarfLocation (
                    subprog, location_attr, type.IsByRef);
                variable = new DwarfTargetVariable (
                    subprog, Name, type, location, lexical_block);
                return true;
            }