@flowscripter/mpeg-sdl-parser
Version:
ISO/IEC 14496-34 Syntactic Description Language (MPEG SDL) parser implemented in TypeScript
14 lines (12 loc) • 316 B
text/typescript
import type { AbstractNode } from "../node/AbstractNode.ts";
/**
* Interface representing a visitor for nodes.
*/
export interface NodeVisitor {
/**
* Called when visiting a node.
* @param node The node to visit.
* @returns The result of the visit operation.
*/
visit(node: AbstractNode): void;
}