UNPKG

nimma

Version:

Scalable JSONPath engine.

13 lines (11 loc) 299 B
import * as b from '../ast/builders.mjs'; import scope from './scope.mjs'; export default function generateEmitCall(id, { parents, keyed }) { return b.expressionStatement( b.callExpression(scope.emit, [ id, b.numericLiteral(parents), b.booleanLiteral(keyed), ]), ); }