'use strict';
function compile(node, ctx) {
const arg1 = ctx.scope.arg1;
ctx.put(typeof arg1 === 'string' ? arg1 : 'undefined');
}
function walk() { }
function stringify(node, ctx) {
ctx.put('$$');
}
exports.compile = compile;
exports.stringify = stringify;
exports.walk = walk;