| Index: pkg/analyzer/lib/src/summary/flat_buffers.dart
|
| diff --git a/pkg/analyzer/lib/src/summary/flat_buffers.dart b/pkg/analyzer/lib/src/summary/flat_buffers.dart
|
| index 00c2d0151912992aeaaddb817b18f351dd390247..0c035558583631b86efeb84d31165f1fff6e2209 100644
|
| --- a/pkg/analyzer/lib/src/summary/flat_buffers.dart
|
| +++ b/pkg/analyzer/lib/src/summary/flat_buffers.dart
|
| @@ -206,11 +206,11 @@ class Builder {
|
| if (_currentVTable == null) {
|
| throw new StateError('Start a table before ending it.');
|
| }
|
| - // Prepare the size of the current table.
|
| - _currentVTable.tableSize = _tail - _currentTableEndTail;
|
| // Prepare for writing the VTable.
|
| _prepare(4, 1);
|
| int tableTail = _tail;
|
| + // Prepare the size of the current table.
|
| + _currentVTable.tableSize = tableTail - _currentTableEndTail;
|
| // Prepare the VTable to use for the current table.
|
| int vTableTail;
|
| {
|
|
|