exports.handler = __f0;

var __defaultsForThing = {};
var __defaultsForThing_config = {x: "x", y: "y"};
__defaultsForThing.config = __defaultsForThing_config;

function __getX() {
  return (function() {
    with({ defaultsForThing: __defaultsForThing, getX: __getX, this: undefined, arguments: undefined }) {

return function /*getX*/() { return defaultsForThing; };

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

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

return function /*getAll*/() { const x = getX(); return { y: defaultsForThing.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);
}
