public override void VisitTypeSpecTable(TypeSpecTable table)
        {
            int number = m_rows [TypeSpecTable.RId];

            table.Rows = new RowCollection(number);
            for (int i = 0; i < number; i++)
            {
                table.Rows.Add(new TypeSpecRow());
            }
        }
        public TypeSpecTable GetTypeSpecTable()
        {
            TypeSpecTable table = m_heap [TypeSpecTable.RId] as TypeSpecTable;

            if (table != null)
            {
                return(table);
            }

            table = new TypeSpecTable();
            InitializeTable(table);
            return(table);
        }