| Index: src/objects-printer.cc
|
| diff --git a/src/objects-printer.cc b/src/objects-printer.cc
|
| index cf4c5d88755cecf6647185fa2cc307110122da84..1b49582254e48e96e0000fa3867ae493dcb316f7 100644
|
| --- a/src/objects-printer.cc
|
| +++ b/src/objects-printer.cc
|
| @@ -235,9 +235,6 @@ void HeapObject::HeapObjectPrint(std::ostream& os) { // NOLINT
|
| case JS_TYPED_ARRAY_TYPE:
|
| JSTypedArray::cast(this)->JSTypedArrayPrint(os);
|
| break;
|
| - case JS_FIXED_ARRAY_ITERATOR_TYPE:
|
| - JSFixedArrayIterator::cast(this)->JSFixedArrayIteratorPrint(os);
|
| - break;
|
| case JS_DATA_VIEW_TYPE:
|
| JSDataView::cast(this)->JSDataViewPrint(os);
|
| break;
|
| @@ -1013,15 +1010,6 @@ void JSArrayIterator::JSArrayIteratorPrint(std::ostream& os) { // NOLING
|
| JSObjectPrintBody(os, this);
|
| }
|
|
|
| -void JSFixedArrayIterator::JSFixedArrayIteratorPrint(
|
| - std::ostream& os) { // NOLINT
|
| - JSObjectPrintHeader(os, this, "JSFixedArrayIterator");
|
| - os << "\n - array = " << Brief(array());
|
| - os << "\n - index = " << index();
|
| - os << "\n - initial_next = " << Brief(initial_next());
|
| - JSObjectPrintBody(os, this);
|
| -}
|
| -
|
| void JSDataView::JSDataViewPrint(std::ostream& os) { // NOLINT
|
| JSObjectPrintHeader(os, this, "JSDataView");
|
| os << "\n - buffer =" << Brief(buffer());
|
|
|