MCPcopy
hub / github.com/inikulin/parse5 / DatFile

Interface DatFile

test/utils/parse-dat-file.ts:27–35  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25}
26
27export interface DatFile<T extends TreeAdapterTypeMap> {
28 input: string;
29 expected: string;
30 expectedErrors: string[];
31 disableEntitiesDecoding: boolean;
32 lineNum: number;
33 scriptingEnabled: boolean;
34 fragmentContext: T['element'] | null;
35}
36
37export function parseDatFile<T extends TreeAdapterTypeMap>(testSet: string, treeAdapter: TreeAdapter<T>): DatFile<T>[] {
38 const testDescrs: Record<string, number | string[]>[] = [];

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…