MCPcopy Create free account
hub / github.com/angular/dev-infra / shift

Method shift

github-actions/bazel/configure-remote/configure-remote.js:8319–8326  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

8317 constructor() {
8318 this.bottom = 0;
8319 this.top = 0;
8320 this.list = new Array(kSize);
8321 this.next = null;
8322 }
8323 isEmpty() {
8324 return this.top === this.bottom;
8325 }
8326 isFull() {
8327 return (this.top + 1 & kMask) === this.bottom;
8328 }
8329 push(data) {

Callers 6

""Function · 0.45
shiftMethod · 0.45
constructorMethod · 0.45
[kDestroy]Method · 0.45
consumeMethod · 0.45
consumeFragmentsMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected