UNPKG

832 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.MonoVmManager = void 0;
7
8function _builderUtil() {
9 const data = require("builder-util");
10
11 _builderUtil = function () {
12 return data;
13 };
14
15 return data;
16}
17
18function _vm() {
19 const data = require("./vm");
20
21 _vm = function () {
22 return data;
23 };
24
25 return data;
26}
27
28class MonoVmManager extends _vm().VmManager {
29 constructor() {
30 super();
31 }
32
33 exec(file, args, options, isLogOutIfDebug = true) {
34 return (0, _builderUtil().exec)("mono", [file].concat(args), Object.assign({}, options), isLogOutIfDebug);
35 }
36
37 spawn(file, args, options, extraOptions) {
38 return (0, _builderUtil().spawn)("mono", [file].concat(args), options, extraOptions);
39 }
40
41} exports.MonoVmManager = MonoVmManager;
42//# sourceMappingURL=MonoVm.js.map
\No newline at end of file