11 lines
796 B
JavaScript
11 lines
796 B
JavaScript
"use strict";
|
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.printSingleLambdaInvocation = exports.printArgumentListWithBraces = void 0;
|
|
var printArgumentListWithBraces_1 = require("./printArgumentListWithBraces");
|
|
Object.defineProperty(exports, "printArgumentListWithBraces", { enumerable: true, get: function () { return __importDefault(printArgumentListWithBraces_1).default; } });
|
|
var printSingleLambdaInvocation_1 = require("./printSingleLambdaInvocation");
|
|
Object.defineProperty(exports, "printSingleLambdaInvocation", { enumerable: true, get: function () { return __importDefault(printSingleLambdaInvocation_1).default; } });
|