time-to-botec

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

utils.d.ts (356B)


      1 import { LocationRange } from "peggy";
      2 import { ASTNode } from "./peggyHelpers.js";
      3 export declare function locationContains(location: LocationRange, offset: number): boolean;
      4 export declare function isBindingStatement(statement: ASTNode): statement is Extract<ASTNode, {
      5     type: "LetStatement" | "DefunStatement";
      6 }>;
      7 //# sourceMappingURL=utils.d.ts.map