zcatalyst-cli
Version:
Command Line Tool for CATALYST
36 lines (35 loc) • 1.83 kB
JavaScript
;
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.python = exports.java = exports.node = void 0;
const fn_utils_1 = require("../../../fn-utils");
const js_1 = require("../../../util_modules/js");
function node(target) {
return __awaiter(this, void 0, void 0, function* () {
const refinedTargets = yield fn_utils_1.fnUtils.common.refineTargets([target.source]);
yield fn_utils_1.fnUtils.node.validate([js_1.JS.assignIn(target, refinedTargets[0])]);
});
}
exports.node = node;
function java(target) {
return __awaiter(this, void 0, void 0, function* () {
const refinedTargets = yield fn_utils_1.fnUtils.common.refineTargets([target.source]);
yield fn_utils_1.fnUtils.java.validate([js_1.JS.assignIn(target, refinedTargets[0])]);
});
}
exports.java = java;
function python(target) {
return __awaiter(this, void 0, void 0, function* () {
const refinedTargets = yield fn_utils_1.fnUtils.common.refineTargets([target.source]);
yield fn_utils_1.fnUtils.python.validate([js_1.JS.assignIn(target, refinedTargets[0])]);
});
}
exports.python = python;