| Index: tools/dom/templates/html/impl/impl_HTMLTableRowElement.darttemplate
|
| diff --git a/tools/dom/templates/html/impl/impl_HTMLTableRowElement.darttemplate b/tools/dom/templates/html/impl/impl_HTMLTableRowElement.darttemplate
|
| index 431e15ff1594e9d4c4196437aa8eb928e09a587d..7716e37b0d9a9ca1776ff064a2fbd1c21e57f2f0 100644
|
| --- a/tools/dom/templates/html/impl/impl_HTMLTableRowElement.darttemplate
|
| +++ b/tools/dom/templates/html/impl/impl_HTMLTableRowElement.darttemplate
|
| @@ -9,12 +9,12 @@ $(ANNOTATIONS)$(CLASS_MODIFIERS)class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC {
|
|
|
| @DomName('HTMLTableRowElement.cells')
|
| List<TableCellElement> get cells =>
|
| - new _WrappedList<TableCellElement>($dom_cells);
|
| + new _WrappedList<TableCellElement>(_cells);
|
|
|
| TableCellElement addCell() {
|
| return insertCell(-1);
|
| }
|
|
|
| - TableCellElement insertCell(int index) => $dom_insertCell(index);
|
| + TableCellElement insertCell(int index) => _insertCell(index);
|
|
|
| $!MEMBERS}
|
|
|