Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ParseFail

import type { ParseFail } from "https://raw.githubusercontent.com/wavebeem/bread-n-butter/v0.6.0/src/bread-n-butter.ts";

Represents a failed parse result, where it failed, and what types of values were expected at the point of failure.

interface ParseFail {
expected: string[];
location: SourceLocation;
type: "ParseFail";
}

§Properties

§
expected: string[]
[src]

List of expected values at the location the parse failed

§

The input location where the parse failed

§
type: "ParseFail"
[src]