public override void VisitClassLayoutTable(ClassLayoutTable table) { int number = m_rows [ClassLayoutTable.RId]; table.Rows = new RowCollection(number); for (int i = 0; i < number; i++) { table.Rows.Add(new ClassLayoutRow()); } }
public ClassLayoutTable GetClassLayoutTable() { ClassLayoutTable table = m_heap [ClassLayoutTable.RId] as ClassLayoutTable; if (table != null) { return(table); } table = new ClassLayoutTable(); InitializeTable(table); return(table); }