| Index: tools/dom/templates/html/impl/impl_HTMLTableSectionElement.darttemplate
|
| diff --git a/tools/dom/templates/html/impl/impl_HTMLTableSectionElement.darttemplate b/tools/dom/templates/html/impl/impl_HTMLTableSectionElement.darttemplate
|
| index 93eecde62e968b1c2f1a0e1c919d326089051530..5f479325e15e918d02820480dc3e378d0b8cbf92 100644
|
| --- a/tools/dom/templates/html/impl/impl_HTMLTableSectionElement.darttemplate
|
| +++ b/tools/dom/templates/html/impl/impl_HTMLTableSectionElement.darttemplate
|
| @@ -9,12 +9,12 @@ $(ANNOTATIONS)$(CLASS_MODIFIERS)class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC {
|
|
|
| @DomName('HTMLTableSectionElement.rows')
|
| List<TableRowElement> get rows =>
|
| - new _WrappedList<TableRowElement>($dom_rows);
|
| + new _WrappedList<TableRowElement>(_rows);
|
|
|
| TableRowElement addRow() {
|
| return insertRow(-1);
|
| }
|
|
|
| - TableRowElement insertRow(int index) => $dom_insertRow(index);
|
| + TableRowElement insertRow(int index) => _insertRow(index);
|
|
|
| $!MEMBERS}
|
|
|