2023-07-29 04:26:29 +00:00
|
|
|
/**
|
|
|
|
* A Pattern is a function that matches against a string starting at a given index.
|
|
|
|
*
|
|
|
|
* If it matches successfully, it returns some captured value, and the index following the match.
|
|
|
|
*
|
2023-08-04 22:31:21 +00:00
|
|
|
* On success or failure, it returns the furthest point the pattern could make sense of, and a description of what was expected next at that point.
|
|
|
|
*
|
2023-08-04 23:25:47 +00:00
|
|
|
* For simple patterns, the "furthest point" may just be the following index; however, some more complex patterns might succeed,
|
|
|
|
* but consume less input than they would have been able to if some other expected symbol was found. Reporting
|
2023-08-04 22:31:21 +00:00
|
|
|
* the furthest a pattern could hypothetically have gotten can help generate better error messages if no valid parse tree is found.
|
|
|
|
*
|
2023-07-29 04:26:29 +00:00
|
|
|
* @template T
|
2023-07-29 20:26:41 +00:00
|
|
|
* @callback Peg.PatternCall
|
|
|
|
* @param {string} source - the string being parsed
|
|
|
|
* @param {number} index - the index in the string to begin matching from
|
2023-08-04 22:31:21 +00:00
|
|
|
* @returns {[[T, number] | null, number, string]} - [successValue, furthest symbol attempted, expected pattern]
|
2023-07-29 20:26:41 +00:00
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @template T
|
|
|
|
* @typedef {object} Peg.PatternExt
|
|
|
|
* @property {<U>(map: (value: T) => U) => Peg.Pattern<U>} map Creates a pattern that wraps another pattern, transforming the returned value on a match
|
2023-08-04 05:24:02 +00:00
|
|
|
* @property {string} expectLabel A human-readable annotation describing the pattern for error messages
|
|
|
|
* @property {(label: string) => Peg.Pattern<T>} expects Adds a human-readable annotation describing the pattern
|
2023-07-29 20:26:41 +00:00
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @template T
|
|
|
|
* @typedef {Peg.PatternCall<T> & Peg.PatternExt<T>} Peg.Pattern
|
2023-07-29 04:26:29 +00:00
|
|
|
*/
|
2023-07-29 18:39:11 +00:00
|
|
|
var Peg = window.Peg ?? {};
|
2023-07-29 04:26:29 +00:00
|
|
|
|
2023-07-29 18:39:11 +00:00
|
|
|
/**
|
|
|
|
* Makes a pattern from a function, adding helper methods.
|
|
|
|
*
|
|
|
|
* @template T
|
2023-08-04 22:31:21 +00:00
|
|
|
* @param {(source: string, index: number) => ([[T, number] | null, number, string])} matchFunc
|
2023-07-29 18:39:11 +00:00
|
|
|
* @returns {Peg.Pattern<T>}
|
|
|
|
*/
|
2023-08-04 05:24:02 +00:00
|
|
|
Peg.WrapPattern = function (matchFunc) {
|
|
|
|
const pattern = /** @type {Peg.Pattern<T>} */ (matchFunc);
|
|
|
|
pattern.map = function (map) {
|
2023-07-29 20:26:41 +00:00
|
|
|
return Peg.WrapPattern(function (source, index) {
|
2023-08-04 22:31:21 +00:00
|
|
|
const [value, furthest, expected] = pattern(source, index);
|
|
|
|
return [value ? [map(value[0]), value[1]] : null, furthest, expected];
|
2023-08-04 05:24:02 +00:00
|
|
|
}).expects(pattern.expectLabel);
|
2023-07-29 20:26:41 +00:00
|
|
|
};
|
|
|
|
|
2023-08-04 05:24:02 +00:00
|
|
|
pattern.expectLabel = pattern.name;
|
|
|
|
pattern.expects = (label) => {
|
|
|
|
pattern.expectLabel = label;
|
|
|
|
return pattern;
|
|
|
|
};
|
|
|
|
|
|
|
|
return pattern;
|
2023-07-29 18:39:11 +00:00
|
|
|
};
|
2023-07-29 04:26:29 +00:00
|
|
|
|
2023-07-29 18:50:49 +00:00
|
|
|
/**
|
|
|
|
* Proxies to a pattern retrieved from an accessor function.
|
|
|
|
*
|
|
|
|
* Allows using a pattern recursively in its own definition, by returning the value of the const assigned to.
|
|
|
|
*
|
|
|
|
* @template T
|
|
|
|
* @param {() => Peg.Pattern<T>} getPattern
|
|
|
|
* @returns {Peg.Pattern<T>}
|
|
|
|
*/
|
|
|
|
Peg.Use = function (getPattern) {
|
|
|
|
return Peg.WrapPattern(function (source, index) {
|
|
|
|
return getPattern()(source, index);
|
2023-08-04 05:24:02 +00:00
|
|
|
}).expects(String(getPattern));
|
2023-07-29 18:50:49 +00:00
|
|
|
};
|
|
|
|
|
2023-07-29 18:39:11 +00:00
|
|
|
/**
|
|
|
|
* Creates a pattern matching a regex & returning any captures. The regex needs to be sticky (using the //y modifier)
|
|
|
|
* @param {RegExp} regex
|
|
|
|
* @return {Peg.Pattern<RegExpExecArray>}
|
|
|
|
*/
|
|
|
|
Peg.Regex = function (regex) {
|
2023-08-04 06:17:16 +00:00
|
|
|
/** @type {Peg.Pattern<RegExpExecArray>} */
|
|
|
|
const pattern = Peg.WrapPattern(function (source, index) {
|
2023-07-29 18:39:11 +00:00
|
|
|
regex.lastIndex = index;
|
|
|
|
const matches = regex.exec(source);
|
2023-08-04 23:25:47 +00:00
|
|
|
return matches
|
|
|
|
? [[matches, regex.lastIndex], regex.lastIndex, pattern.expectLabel]
|
|
|
|
: [null, index, pattern.expectLabel];
|
2023-08-04 05:24:02 +00:00
|
|
|
}).expects(regex.source);
|
2023-08-04 06:17:16 +00:00
|
|
|
return pattern;
|
2023-07-29 18:39:11 +00:00
|
|
|
};
|
2023-07-29 04:26:29 +00:00
|
|
|
|
2023-07-29 18:39:11 +00:00
|
|
|
/**
|
|
|
|
* Creates a pattern that tries the given patterns, in order, until it finds one that matches at the current index.
|
|
|
|
* @template T
|
|
|
|
* @param {...Peg.Pattern<T>} patterns
|
|
|
|
* @return {Peg.Pattern<T>}
|
|
|
|
*/
|
|
|
|
Peg.Choose = function (...patterns) {
|
2023-08-04 22:31:21 +00:00
|
|
|
const genericExpected = patterns
|
|
|
|
.map((pattern) => pattern.expectLabel)
|
|
|
|
.join(" | ");
|
2023-07-29 18:39:11 +00:00
|
|
|
return Peg.WrapPattern(function (source, index) {
|
2023-08-04 22:31:21 +00:00
|
|
|
let furthestFound = index;
|
|
|
|
let furthestExpected = genericExpected;
|
2023-07-29 18:39:11 +00:00
|
|
|
for (const pattern of patterns) {
|
2023-08-04 22:31:21 +00:00
|
|
|
const [value, furthest, expected] = pattern(source, index);
|
|
|
|
if (value) {
|
|
|
|
return [value, furthest, expected];
|
|
|
|
} else if (furthest > furthestFound) {
|
|
|
|
furthestFound = furthest;
|
|
|
|
furthestExpected = expected;
|
2023-07-29 04:26:29 +00:00
|
|
|
}
|
2023-07-29 18:39:11 +00:00
|
|
|
}
|
2023-08-04 22:31:21 +00:00
|
|
|
return [null, furthestFound, furthestExpected];
|
|
|
|
}).expects(genericExpected);
|
2023-07-29 18:39:11 +00:00
|
|
|
};
|
2023-07-29 05:13:38 +00:00
|
|
|
|
2023-07-29 18:39:11 +00:00
|
|
|
/**
|
|
|
|
* Creates a pattern that concatenates the given patterns, returning a tuple of their captured values.
|
|
|
|
*
|
|
|
|
* For example, if A matches "a" and captures 1, while B matches "b" and captures null,
|
|
|
|
* then `Sequence(A,B)` will match "ab" and capture [1, null]
|
|
|
|
* @template {unknown[]} T
|
|
|
|
* @param {{[K in keyof T]: Peg.Pattern<T[K]>}} patterns
|
|
|
|
* @return {Peg.Pattern<T>}
|
|
|
|
*/
|
|
|
|
Peg.Sequence = function (...patterns) {
|
2023-08-04 22:31:21 +00:00
|
|
|
const genericExpected = patterns[0]?.expectLabel ?? "(nothing)";
|
2023-07-29 18:39:11 +00:00
|
|
|
return Peg.WrapPattern(function (source, index) {
|
|
|
|
const values = /** @type {T} */ (/** @type {unknown} */ ([]));
|
2023-08-04 22:31:21 +00:00
|
|
|
let furthestFound = index;
|
|
|
|
let furthestExpected = genericExpected;
|
2023-07-29 18:39:11 +00:00
|
|
|
for (const pattern of patterns) {
|
2023-08-04 22:31:21 +00:00
|
|
|
const [value, furthest, expected] = pattern(source, index);
|
2023-08-04 23:25:47 +00:00
|
|
|
if (furthest >= furthestFound) {
|
|
|
|
furthestFound = furthest;
|
|
|
|
furthestExpected = expected;
|
|
|
|
}
|
2023-08-04 22:31:21 +00:00
|
|
|
if (value == null) {
|
2023-08-04 23:25:47 +00:00
|
|
|
return [null, furthestFound, furthestExpected];
|
2023-07-29 05:13:38 +00:00
|
|
|
}
|
2023-08-04 22:31:21 +00:00
|
|
|
values.push(value[0]);
|
|
|
|
index = value[1];
|
2023-07-29 18:39:11 +00:00
|
|
|
}
|
2023-08-04 22:31:21 +00:00
|
|
|
return [[values, index], furthestFound, furthestExpected];
|
|
|
|
}).expects(genericExpected);
|
2023-07-29 18:39:11 +00:00
|
|
|
};
|
2023-07-29 05:45:34 +00:00
|
|
|
|
2023-07-29 18:39:11 +00:00
|
|
|
/**
|
|
|
|
* Creates a pattern that matches consecutive runs of the given pattern, returning an array of all captures.
|
|
|
|
*
|
2023-07-29 20:26:41 +00:00
|
|
|
* The match only succeeds if the run is at least {@link min} instances long.
|
2023-07-29 18:39:11 +00:00
|
|
|
*
|
|
|
|
* If the given pattern does not consume input, the matching will be terminated to prevent an eternal loop.
|
|
|
|
*
|
|
|
|
* Note that if the minimum run is zero, this pattern will always succeed, but might not consume any input.
|
|
|
|
* @template {unknown} T
|
|
|
|
* @param {number} min
|
|
|
|
* @param {Peg.Pattern<T>} pattern
|
|
|
|
* @return {Peg.Pattern<T[]>}
|
|
|
|
*/
|
|
|
|
Peg.AtLeast = function (min, pattern) {
|
|
|
|
return Peg.WrapPattern(function (source, index) {
|
|
|
|
const values = /** @type {T[]} */ ([]);
|
2023-08-04 22:31:21 +00:00
|
|
|
let furthestFound = index;
|
|
|
|
let furthestExpected = pattern.expectLabel;
|
2023-07-29 18:39:11 +00:00
|
|
|
do {
|
2023-08-04 22:31:21 +00:00
|
|
|
const [value, furthest, expected] = pattern(source, index);
|
2023-08-04 23:25:47 +00:00
|
|
|
if (furthest > furthestFound) {
|
2023-08-04 22:31:21 +00:00
|
|
|
furthestFound = furthest;
|
|
|
|
furthestExpected = expected;
|
2023-08-04 23:25:47 +00:00
|
|
|
}
|
|
|
|
if (value == null) {
|
2023-08-04 04:17:14 +00:00
|
|
|
break;
|
|
|
|
}
|
2023-08-04 22:31:21 +00:00
|
|
|
values.push(value[0]);
|
|
|
|
if (index == value[1]) {
|
2023-08-04 04:17:14 +00:00
|
|
|
break;
|
|
|
|
}
|
2023-08-04 22:31:21 +00:00
|
|
|
index = value[1];
|
2023-07-29 18:39:11 +00:00
|
|
|
} while (true);
|
|
|
|
if (values.length >= min) {
|
2023-08-04 22:31:21 +00:00
|
|
|
return [[values, index], furthestFound, furthestExpected];
|
2023-07-29 05:45:34 +00:00
|
|
|
} else {
|
2023-08-04 22:31:21 +00:00
|
|
|
return [null, furthestFound, furthestExpected];
|
2023-07-29 05:45:34 +00:00
|
|
|
}
|
2023-08-04 05:24:02 +00:00
|
|
|
}).expects(pattern.expectLabel);
|
2023-07-29 04:26:29 +00:00
|
|
|
};
|
2023-07-29 18:39:11 +00:00
|
|
|
|
|
|
|
/**
|
2023-08-04 05:33:40 +00:00
|
|
|
* Creates a pattern that matches the end of input
|
|
|
|
* @return {Peg.Pattern<true>}
|
2023-07-29 18:39:11 +00:00
|
|
|
*/
|
2023-08-04 05:33:40 +00:00
|
|
|
Peg.End = () => {
|
|
|
|
/** @type {Peg.Pattern<true>} */
|
|
|
|
const end = Peg.WrapPattern(function End(source, index) {
|
2023-08-04 22:31:21 +00:00
|
|
|
return [
|
|
|
|
source.length == index ? [/** @type {true} */ (true), index] : null,
|
|
|
|
index,
|
|
|
|
end.expectLabel,
|
|
|
|
];
|
2023-08-04 05:33:40 +00:00
|
|
|
}).expects("<eof>");
|
|
|
|
return end;
|
|
|
|
};
|
2023-08-04 21:43:11 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a pattern that never succeeds, but reports how far its wrapped pattern could match before failing.
|
|
|
|
*
|
|
|
|
* This is a hack, meant to improve error messages after an AtLeast(). Maybe this can be removed by patterns returning both success and failure
|
|
|
|
*
|
|
|
|
* Never consumes input, and fails with zero length if the pattern succeeds.
|
|
|
|
* @param {Peg.Pattern<unknown>} pattern
|
|
|
|
* @return {Peg.Pattern<never>}
|
|
|
|
*/
|
|
|
|
Peg.Hint = function (pattern) {
|
|
|
|
return /** @type {Peg.Pattern<never>} */ (
|
|
|
|
Peg.WrapPattern(function (source, index) {
|
2023-08-04 22:31:21 +00:00
|
|
|
const [value, furthest, expected] = pattern(source, index);
|
|
|
|
if (value) {
|
|
|
|
console.log("oops match", value, furthest, expected);
|
|
|
|
return [null, index, pattern.expectLabel];
|
2023-08-04 21:43:11 +00:00
|
|
|
} else {
|
2023-08-04 22:31:21 +00:00
|
|
|
return [value, furthest, expected];
|
2023-08-04 21:43:11 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
).expects(pattern.expectLabel);
|
|
|
|
};
|