@bscotch/gml-parser
Version:
A parser for GML (GameMaker Language) files for programmatic manipulation and analysis of GameMaker projects.
7 lines • 496 B
TypeScript
import type { FunctionExpressionCstChildren } from '../gml-cst.js';
import { VisitorContext } from './parser.js';
import { Type } from './types.js';
import type { GmlSignifierVisitor } from './visitor.js';
/** Visit a function's CST and update any signifiers and types */
export declare function visitFunctionExpression(this: GmlSignifierVisitor, children: FunctionExpressionCstChildren, ctx: VisitorContext): Type<'Function'> | undefined;
//# sourceMappingURL=visitor.functionExpression.d.ts.map