Mono.Debugger.Backend.DwarfReader.ReadTypes C# (CSharp) Method

ReadTypes() public method

public ReadTypes ( ) : void
return void
        public void ReadTypes()
        {
            if (types_initialized)
                return;

            foreach (CompileUnitBlock block in compile_unit_hash.Values)
                block.ReadSymbolTable ();

            types_initialized = true;
        }