exports.handler = __f0;

var __config = {x: "x", y: "y"};

function __getX() {
  return (function() {
    with({ config: __config, getX: __getX, this: undefined, arguments: undefined }) {

return function /*getX*/() { return config.x; };

    }
  }).apply(undefined, undefined).apply(this, arguments);
}

function __getAll() {
  return (function() {
    with({ getX: __getX, config: __config, getAll: __getAll, this: undefined, arguments: undefined }) {

return function /*getAll*/() { const x = getX(); return { x, y: config.y }; };

    }
  }).apply(undefined, undefined).apply(this, arguments);
}

function __f0() {
  return (function() {
    with({ getAll: __getAll, this: undefined, arguments: undefined }) {

return function () { console.log(getAll()); };

    }
  }).apply(undefined, undefined).apply(this, arguments);
}
