aboutsummaryrefslogtreecommitdiff
path: root/src/js/builtins/StreamInternals.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/js/builtins/StreamInternals.ts')
-rw-r--r--src/js/builtins/StreamInternals.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/js/builtins/StreamInternals.ts b/src/js/builtins/StreamInternals.ts
index b42dc2f57..7bb262951 100644
--- a/src/js/builtins/StreamInternals.ts
+++ b/src/js/builtins/StreamInternals.ts
@@ -184,7 +184,7 @@ export function createFIFO() {
this._capacityMask = (this._capacityMask << 1) | 1;
}
- shrinkArray() {
+ _shrinkArray() {
this._list.length >>>= 1;
this._capacityMask >>>= 1;
}