MCPcopy
hub / github.com/antvis/Infographic / StackFrame

Interface StackFrame

src/syntax/parser.ts:3–8  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1import type { ArrayNode, ObjectNode, SyntaxError } from './types';
2
3interface StackFrame {
4 indent: number;
5 node: ObjectNode | ArrayNode;
6 parent?: ObjectNode | ArrayNode | null;
7 key?: string | null;
8}
9
10interface ParseResult {
11 ast: ObjectNode;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected