public SymbolAddrTable(string id, SymbolAddrTable previous, ushort blockSize) { Id = id; _header = previous; Instructions = new IndInstTable(this); _offset = 0; _blockSize = blockSize; _entries = new Dictionary <string, SymbolEntry>(); _typeTable = DataTypeTable.GetInstance(); }
public static DataTypeTable GetInstance() { return(_self ?? (_self = new DataTypeTable())); }