ts-simple-ast
Version:
TypeScript compiler wrapper for AST navigation and code generation.
12 lines (10 loc) • 387 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
// todo: add code verification to ensure all fill functions call this
/** @internal */
function callBaseFill(basePrototype, node, structure) {
if (basePrototype.fill != null)
basePrototype.fill.call(node, structure);
}
exports.callBaseFill = callBaseFill;
//# sourceMappingURL=callBaseFill.js.map