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

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

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

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