MCPcopy Create free account
hub / github.com/codeaashu/claude-code / isFull

Method isFull

src/server/web/public/terminal.js:2391–2393  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2389 return this._startIndex = ++this._startIndex % this._maxLength, this.onTrimEmitter.fire(1), this._array[this._getCyclicIndex(this._length - 1)];
2390 }
2391 get isFull() {
2392 return this._length === this._maxLength;
2393 }
2394 pop() {
2395 return this._array[this._getCyclicIndex(this._length-- - 1)];
2396 }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected