time-to-botec

Benchmark sampling in different programming languages
Log | Files | Refs | README

stack.d.ts (423B)


      1 import { ImmutableMap } from "../utility/immutableMap.js";
      2 import { Value } from "../value/index.js";
      3 export type Bindings = ImmutableMap<string, Value>;
      4 export declare class Stack {
      5     private stack;
      6     private constructor();
      7     static make(): Stack;
      8     outOfBounds(): never;
      9     get(offset: number): Value;
     10     push(name: string, value: Value): Stack;
     11     asBindings(): Bindings;
     12 }
     13 //# sourceMappingURL=stack.d.ts.map