UNPKG

@bscotch/gml-parser

Version:

A parser for GML (GameMaker Language) files for programmatic manipulation and analysis of GameMaker projects.

6 lines 438 B
import type { IdentifierAccessorCstChildren } from '../gml-cst.js'; import { type VisitorContext } from './parser.js'; import { Type, TypeStore } from './types.js'; import type { GmlSignifierVisitor } from './visitor.js'; export declare function visitIdentifierAccessor(this: GmlSignifierVisitor, children: IdentifierAccessorCstChildren, ctx: VisitorContext): Type[] | TypeStore[]; //# sourceMappingURL=visitor.identifierAccessor.d.ts.map