greybel-interpreter 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +3 -0
- package/dist/context.d.ts +68 -0
- package/dist/context.js +399 -0
- package/dist/cps.d.ts +15 -0
- package/dist/cps.js +438 -0
- package/dist/custom-types/boolean.d.ts +10 -0
- package/dist/custom-types/boolean.js +41 -0
- package/dist/custom-types/list.d.ts +25 -0
- package/dist/custom-types/list.js +281 -0
- package/dist/custom-types/map.d.ts +28 -0
- package/dist/custom-types/map.js +289 -0
- package/dist/custom-types/nil.d.ts +8 -0
- package/dist/custom-types/nil.js +38 -0
- package/dist/custom-types/number.d.ts +10 -0
- package/dist/custom-types/number.js +41 -0
- package/dist/custom-types/string.d.ts +21 -0
- package/dist/custom-types/string.js +132 -0
- package/dist/expressions/assign.d.ts +12 -0
- package/dist/expressions/assign.js +156 -0
- package/dist/expressions/binary-negated-expression.d.ts +18 -0
- package/dist/expressions/binary-negated-expression.js +115 -0
- package/dist/expressions/call.d.ts +13 -0
- package/dist/expressions/call.js +177 -0
- package/dist/expressions/list.d.ts +13 -0
- package/dist/expressions/list.js +119 -0
- package/dist/expressions/logical-and-binary.d.ts +22 -0
- package/dist/expressions/logical-and-binary.js +188 -0
- package/dist/expressions/map.d.ts +18 -0
- package/dist/expressions/map.js +171 -0
- package/dist/expressions/path.d.ts +30 -0
- package/dist/expressions/path.js +310 -0
- package/dist/index.d.ts +35 -0
- package/dist/index.js +82 -0
- package/dist/interpreter.d.ts +20 -0
- package/dist/interpreter.js +55 -0
- package/dist/operations/argument.d.ts +8 -0
- package/dist/operations/argument.js +129 -0
- package/dist/operations/body.d.ts +8 -0
- package/dist/operations/body.js +144 -0
- package/dist/operations/break.d.ts +7 -0
- package/dist/operations/break.js +34 -0
- package/dist/operations/continue.d.ts +7 -0
- package/dist/operations/continue.js +34 -0
- package/dist/operations/debugger.d.ts +7 -0
- package/dist/operations/debugger.js +32 -0
- package/dist/operations/else-if.d.ts +12 -0
- package/dist/operations/else-if.js +31 -0
- package/dist/operations/else.d.ts +10 -0
- package/dist/operations/else.js +30 -0
- package/dist/operations/for.d.ts +16 -0
- package/dist/operations/for.js +139 -0
- package/dist/operations/function.d.ts +21 -0
- package/dist/operations/function.js +125 -0
- package/dist/operations/if-statement.d.ts +8 -0
- package/dist/operations/if-statement.js +138 -0
- package/dist/operations/if.d.ts +12 -0
- package/dist/operations/if.js +31 -0
- package/dist/operations/new.d.ts +11 -0
- package/dist/operations/new.js +96 -0
- package/dist/operations/not.d.ts +11 -0
- package/dist/operations/not.js +95 -0
- package/dist/operations/reference.d.ts +11 -0
- package/dist/operations/reference.js +102 -0
- package/dist/operations/return.d.ts +11 -0
- package/dist/operations/return.js +102 -0
- package/dist/operations/top.d.ts +12 -0
- package/dist/operations/top.js +84 -0
- package/dist/operations/while.d.ts +14 -0
- package/dist/operations/while.js +123 -0
- package/dist/resource.d.ts +9 -0
- package/dist/resource.js +29 -0
- package/dist/typer.d.ts +6 -0
- package/dist/typer.js +99 -0
- package/dist/types/custom-type.d.ts +19 -0
- package/dist/types/custom-type.js +58 -0
- package/dist/types/expression.d.ts +6 -0
- package/dist/types/expression.js +9 -0
- package/dist/types/operation.d.ts +9 -0
- package/dist/types/operation.js +38 -0
- package/package.json +45 -0
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
var cps_1 = __importDefault(require("./cps"));
|
|
7
|
+
var context_1 = require("./context");
|
|
8
|
+
var greybel_core_1 = require("greybel-core");
|
|
9
|
+
var resource_1 = require("./resource");
|
|
10
|
+
var top_1 = __importDefault(require("./operations/top"));
|
|
11
|
+
var typer_1 = require("./typer");
|
|
12
|
+
;
|
|
13
|
+
var Interpreter = /** @class */ (function () {
|
|
14
|
+
function Interpreter(options) {
|
|
15
|
+
var me = this;
|
|
16
|
+
me.resourceHandler = options.resourceHandler || new resource_1.ResourceProvider().getHandler();
|
|
17
|
+
me.debugger = options.debugger || new context_1.Debugger();
|
|
18
|
+
me.api = options.api || new Map();
|
|
19
|
+
me.params = options.params || [];
|
|
20
|
+
if (options.target) {
|
|
21
|
+
me.target = options.target;
|
|
22
|
+
me.code = me.resourceHandler.get(options.target);
|
|
23
|
+
}
|
|
24
|
+
else {
|
|
25
|
+
me.target = 'unknown';
|
|
26
|
+
me.code = options.code;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
Interpreter.prototype.digest = function () {
|
|
30
|
+
var me = this;
|
|
31
|
+
var parser = new greybel_core_1.Parser(me.code);
|
|
32
|
+
var chunk = parser.parseChunk();
|
|
33
|
+
var cps = new cps_1.default({
|
|
34
|
+
target: me.target,
|
|
35
|
+
resourceHandler: me.resourceHandler
|
|
36
|
+
});
|
|
37
|
+
var mainContext = new context_1.OperationContext({
|
|
38
|
+
isProtected: true,
|
|
39
|
+
debugger: me.debugger,
|
|
40
|
+
cps: cps
|
|
41
|
+
});
|
|
42
|
+
var topOperation = new top_1.default(null, {
|
|
43
|
+
body: cps.visit(chunk)
|
|
44
|
+
});
|
|
45
|
+
mainContext.extend(me.api);
|
|
46
|
+
mainContext.scope.refs.set('params', (0, typer_1.cast)(me.params));
|
|
47
|
+
return topOperation.run(mainContext)
|
|
48
|
+
.catch(function (err) {
|
|
49
|
+
console.error(err);
|
|
50
|
+
throw err;
|
|
51
|
+
});
|
|
52
|
+
};
|
|
53
|
+
return Interpreter;
|
|
54
|
+
}());
|
|
55
|
+
exports.default = Interpreter;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Operation } from '../types/operation';
|
|
2
|
+
import { ASTBase } from 'greybel-core';
|
|
3
|
+
import { OperationContext } from '../context';
|
|
4
|
+
export default class ArgumentOperation extends Operation {
|
|
5
|
+
stack: any[];
|
|
6
|
+
constructor(ast: ASTBase[]);
|
|
7
|
+
get(operationContext: OperationContext): Promise<any[]>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __extends = (this && this.__extends) || (function () {
|
|
3
|
+
var extendStatics = function (d, b) {
|
|
4
|
+
extendStatics = Object.setPrototypeOf ||
|
|
5
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
|
+
return extendStatics(d, b);
|
|
8
|
+
};
|
|
9
|
+
return function (d, b) {
|
|
10
|
+
if (typeof b !== "function" && b !== null)
|
|
11
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
12
|
+
extendStatics(d, b);
|
|
13
|
+
function __() { this.constructor = d; }
|
|
14
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
15
|
+
};
|
|
16
|
+
})();
|
|
17
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
18
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
19
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
20
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
21
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
22
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
23
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
24
|
+
});
|
|
25
|
+
};
|
|
26
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
27
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
28
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
29
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
30
|
+
function step(op) {
|
|
31
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
32
|
+
while (_) try {
|
|
33
|
+
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
34
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
35
|
+
switch (op[0]) {
|
|
36
|
+
case 0: case 1: t = op; break;
|
|
37
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
38
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
39
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
40
|
+
default:
|
|
41
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
42
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
43
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
44
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
45
|
+
if (t[2]) _.ops.pop();
|
|
46
|
+
_.trys.pop(); continue;
|
|
47
|
+
}
|
|
48
|
+
op = body.call(thisArg, _);
|
|
49
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
50
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
51
|
+
}
|
|
52
|
+
};
|
|
53
|
+
var __values = (this && this.__values) || function(o) {
|
|
54
|
+
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
|
|
55
|
+
if (m) return m.call(o);
|
|
56
|
+
if (o && typeof o.length === "number") return {
|
|
57
|
+
next: function () {
|
|
58
|
+
if (o && i >= o.length) o = void 0;
|
|
59
|
+
return { value: o && o[i++], done: !o };
|
|
60
|
+
}
|
|
61
|
+
};
|
|
62
|
+
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
|
|
63
|
+
};
|
|
64
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
65
|
+
var typer_1 = require("../typer");
|
|
66
|
+
var operation_1 = require("../types/operation");
|
|
67
|
+
var expression_1 = require("../types/expression");
|
|
68
|
+
var ArgumentOperation = /** @class */ (function (_super) {
|
|
69
|
+
__extends(ArgumentOperation, _super);
|
|
70
|
+
function ArgumentOperation(ast) {
|
|
71
|
+
var _this = _super.call(this) || this;
|
|
72
|
+
var me = _this;
|
|
73
|
+
me.ast = ast;
|
|
74
|
+
me.stack = [];
|
|
75
|
+
return _this;
|
|
76
|
+
}
|
|
77
|
+
ArgumentOperation.prototype.get = function (operationContext) {
|
|
78
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
79
|
+
var me, stack, args, stack_1, stack_1_1, entity, _a, _b, e_1_1;
|
|
80
|
+
var e_1, _c;
|
|
81
|
+
return __generator(this, function (_d) {
|
|
82
|
+
switch (_d.label) {
|
|
83
|
+
case 0:
|
|
84
|
+
me = this;
|
|
85
|
+
stack = me.stack;
|
|
86
|
+
args = [];
|
|
87
|
+
_d.label = 1;
|
|
88
|
+
case 1:
|
|
89
|
+
_d.trys.push([1, 8, 9, 10]);
|
|
90
|
+
stack_1 = __values(stack), stack_1_1 = stack_1.next();
|
|
91
|
+
_d.label = 2;
|
|
92
|
+
case 2:
|
|
93
|
+
if (!!stack_1_1.done) return [3 /*break*/, 7];
|
|
94
|
+
entity = stack_1_1.value;
|
|
95
|
+
if (!(0, typer_1.isCustomValue)(entity)) return [3 /*break*/, 3];
|
|
96
|
+
args.push(entity);
|
|
97
|
+
return [3 /*break*/, 6];
|
|
98
|
+
case 3:
|
|
99
|
+
if (!(entity instanceof expression_1.Expression)) return [3 /*break*/, 5];
|
|
100
|
+
_b = (_a = args).push;
|
|
101
|
+
return [4 /*yield*/, entity.get(operationContext, me)];
|
|
102
|
+
case 4:
|
|
103
|
+
_b.apply(_a, [_d.sent()]);
|
|
104
|
+
return [3 /*break*/, 6];
|
|
105
|
+
case 5:
|
|
106
|
+
operationContext.debugger.raise('Unexpected argument', me, entity);
|
|
107
|
+
_d.label = 6;
|
|
108
|
+
case 6:
|
|
109
|
+
stack_1_1 = stack_1.next();
|
|
110
|
+
return [3 /*break*/, 2];
|
|
111
|
+
case 7: return [3 /*break*/, 10];
|
|
112
|
+
case 8:
|
|
113
|
+
e_1_1 = _d.sent();
|
|
114
|
+
e_1 = { error: e_1_1 };
|
|
115
|
+
return [3 /*break*/, 10];
|
|
116
|
+
case 9:
|
|
117
|
+
try {
|
|
118
|
+
if (stack_1_1 && !stack_1_1.done && (_c = stack_1.return)) _c.call(stack_1);
|
|
119
|
+
}
|
|
120
|
+
finally { if (e_1) throw e_1.error; }
|
|
121
|
+
return [7 /*endfinally*/];
|
|
122
|
+
case 10: return [2 /*return*/, args];
|
|
123
|
+
}
|
|
124
|
+
});
|
|
125
|
+
});
|
|
126
|
+
};
|
|
127
|
+
return ArgumentOperation;
|
|
128
|
+
}(operation_1.Operation));
|
|
129
|
+
exports.default = ArgumentOperation;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Operation } from '../types/operation';
|
|
2
|
+
import { ASTBase } from 'greybel-core';
|
|
3
|
+
import { OperationContext } from '../context';
|
|
4
|
+
export default class BodyOperation extends Operation {
|
|
5
|
+
stack: any[];
|
|
6
|
+
constructor(ast: ASTBase[]);
|
|
7
|
+
run(operationContext: OperationContext): Promise<void>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __extends = (this && this.__extends) || (function () {
|
|
3
|
+
var extendStatics = function (d, b) {
|
|
4
|
+
extendStatics = Object.setPrototypeOf ||
|
|
5
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
|
+
return extendStatics(d, b);
|
|
8
|
+
};
|
|
9
|
+
return function (d, b) {
|
|
10
|
+
if (typeof b !== "function" && b !== null)
|
|
11
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
12
|
+
extendStatics(d, b);
|
|
13
|
+
function __() { this.constructor = d; }
|
|
14
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
15
|
+
};
|
|
16
|
+
})();
|
|
17
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
18
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
19
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
20
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
21
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
22
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
23
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
24
|
+
});
|
|
25
|
+
};
|
|
26
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
27
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
28
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
29
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
30
|
+
function step(op) {
|
|
31
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
32
|
+
while (_) try {
|
|
33
|
+
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
34
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
35
|
+
switch (op[0]) {
|
|
36
|
+
case 0: case 1: t = op; break;
|
|
37
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
38
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
39
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
40
|
+
default:
|
|
41
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
42
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
43
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
44
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
45
|
+
if (t[2]) _.ops.pop();
|
|
46
|
+
_.trys.pop(); continue;
|
|
47
|
+
}
|
|
48
|
+
op = body.call(thisArg, _);
|
|
49
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
50
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
51
|
+
}
|
|
52
|
+
};
|
|
53
|
+
var __values = (this && this.__values) || function(o) {
|
|
54
|
+
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
|
|
55
|
+
if (m) return m.call(o);
|
|
56
|
+
if (o && typeof o.length === "number") return {
|
|
57
|
+
next: function () {
|
|
58
|
+
if (o && i >= o.length) o = void 0;
|
|
59
|
+
return { value: o && o[i++], done: !o };
|
|
60
|
+
}
|
|
61
|
+
};
|
|
62
|
+
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
|
|
63
|
+
};
|
|
64
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
65
|
+
var operation_1 = require("../types/operation");
|
|
66
|
+
var expression_1 = require("../types/expression");
|
|
67
|
+
var context_1 = require("../context");
|
|
68
|
+
var BodyOperation = /** @class */ (function (_super) {
|
|
69
|
+
__extends(BodyOperation, _super);
|
|
70
|
+
function BodyOperation(ast) {
|
|
71
|
+
var _this = _super.call(this) || this;
|
|
72
|
+
var me = _this;
|
|
73
|
+
me.ast = ast;
|
|
74
|
+
me.stack = [];
|
|
75
|
+
return _this;
|
|
76
|
+
}
|
|
77
|
+
BodyOperation.prototype.run = function (operationContext) {
|
|
78
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
79
|
+
var me, dbgr, isEOL, context_2, context_3, _a, _b, entity, e_1_1;
|
|
80
|
+
var e_1, _c;
|
|
81
|
+
return __generator(this, function (_d) {
|
|
82
|
+
switch (_d.label) {
|
|
83
|
+
case 0:
|
|
84
|
+
me = this;
|
|
85
|
+
dbgr = operationContext.debugger;
|
|
86
|
+
isEOL = function () { return false; };
|
|
87
|
+
if (operationContext.type === context_1.ContextType.LOOP) {
|
|
88
|
+
context_2 = operationContext.getMemory('loopContext');
|
|
89
|
+
isEOL = function () { return context_2.isBreak || context_2.isContinue; };
|
|
90
|
+
}
|
|
91
|
+
else if (operationContext.type === context_1.ContextType.FUNCTION) {
|
|
92
|
+
context_3 = operationContext.getMemory('functionContext');
|
|
93
|
+
isEOL = function () { return context_3.isReturn; };
|
|
94
|
+
}
|
|
95
|
+
_d.label = 1;
|
|
96
|
+
case 1:
|
|
97
|
+
_d.trys.push([1, 11, 12, 13]);
|
|
98
|
+
_a = __values(me.stack), _b = _a.next();
|
|
99
|
+
_d.label = 2;
|
|
100
|
+
case 2:
|
|
101
|
+
if (!!_b.done) return [3 /*break*/, 10];
|
|
102
|
+
entity = _b.value;
|
|
103
|
+
if (!(operationContext.type !== context_1.ContextType.INJECTION && dbgr.getBreakpoint())) return [3 /*break*/, 4];
|
|
104
|
+
dbgr.interact(operationContext, entity);
|
|
105
|
+
return [4 /*yield*/, dbgr.resume()];
|
|
106
|
+
case 3:
|
|
107
|
+
_d.sent();
|
|
108
|
+
_d.label = 4;
|
|
109
|
+
case 4:
|
|
110
|
+
if (!(entity instanceof expression_1.Expression)) return [3 /*break*/, 6];
|
|
111
|
+
return [4 /*yield*/, entity.get(operationContext)];
|
|
112
|
+
case 5:
|
|
113
|
+
_d.sent();
|
|
114
|
+
return [3 /*break*/, 8];
|
|
115
|
+
case 6: return [4 /*yield*/, entity.run(operationContext)];
|
|
116
|
+
case 7:
|
|
117
|
+
_d.sent();
|
|
118
|
+
_d.label = 8;
|
|
119
|
+
case 8:
|
|
120
|
+
if (isEOL())
|
|
121
|
+
return [3 /*break*/, 10];
|
|
122
|
+
_d.label = 9;
|
|
123
|
+
case 9:
|
|
124
|
+
_b = _a.next();
|
|
125
|
+
return [3 /*break*/, 2];
|
|
126
|
+
case 10: return [3 /*break*/, 13];
|
|
127
|
+
case 11:
|
|
128
|
+
e_1_1 = _d.sent();
|
|
129
|
+
e_1 = { error: e_1_1 };
|
|
130
|
+
return [3 /*break*/, 13];
|
|
131
|
+
case 12:
|
|
132
|
+
try {
|
|
133
|
+
if (_b && !_b.done && (_c = _a.return)) _c.call(_a);
|
|
134
|
+
}
|
|
135
|
+
finally { if (e_1) throw e_1.error; }
|
|
136
|
+
return [7 /*endfinally*/];
|
|
137
|
+
case 13: return [2 /*return*/];
|
|
138
|
+
}
|
|
139
|
+
});
|
|
140
|
+
});
|
|
141
|
+
};
|
|
142
|
+
return BodyOperation;
|
|
143
|
+
}(operation_1.Operation));
|
|
144
|
+
exports.default = BodyOperation;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Operation } from '../types/operation';
|
|
2
|
+
import { OperationContext } from '../context';
|
|
3
|
+
import { ASTBase } from 'greybel-core';
|
|
4
|
+
export default class BreakOperation extends Operation {
|
|
5
|
+
constructor(ast: ASTBase);
|
|
6
|
+
run(operationContext: OperationContext): void;
|
|
7
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __extends = (this && this.__extends) || (function () {
|
|
3
|
+
var extendStatics = function (d, b) {
|
|
4
|
+
extendStatics = Object.setPrototypeOf ||
|
|
5
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
|
+
return extendStatics(d, b);
|
|
8
|
+
};
|
|
9
|
+
return function (d, b) {
|
|
10
|
+
if (typeof b !== "function" && b !== null)
|
|
11
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
12
|
+
extendStatics(d, b);
|
|
13
|
+
function __() { this.constructor = d; }
|
|
14
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
15
|
+
};
|
|
16
|
+
})();
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
var operation_1 = require("../types/operation");
|
|
19
|
+
var BreakOperation = /** @class */ (function (_super) {
|
|
20
|
+
__extends(BreakOperation, _super);
|
|
21
|
+
function BreakOperation(ast) {
|
|
22
|
+
var _this = _super.call(this) || this;
|
|
23
|
+
var me = _this;
|
|
24
|
+
me.ast = ast;
|
|
25
|
+
return _this;
|
|
26
|
+
}
|
|
27
|
+
BreakOperation.prototype.run = function (operationContext) {
|
|
28
|
+
var me = this;
|
|
29
|
+
var loopContext = operationContext.getMemory('loopContext');
|
|
30
|
+
loopContext.isBreak = true;
|
|
31
|
+
};
|
|
32
|
+
return BreakOperation;
|
|
33
|
+
}(operation_1.Operation));
|
|
34
|
+
exports.default = BreakOperation;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Operation } from '../types/operation';
|
|
2
|
+
import { OperationContext } from '../context';
|
|
3
|
+
import { ASTBase } from 'greybel-core';
|
|
4
|
+
export default class ContinueOperation extends Operation {
|
|
5
|
+
constructor(ast: ASTBase);
|
|
6
|
+
run(operationContext: OperationContext): void;
|
|
7
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __extends = (this && this.__extends) || (function () {
|
|
3
|
+
var extendStatics = function (d, b) {
|
|
4
|
+
extendStatics = Object.setPrototypeOf ||
|
|
5
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
|
+
return extendStatics(d, b);
|
|
8
|
+
};
|
|
9
|
+
return function (d, b) {
|
|
10
|
+
if (typeof b !== "function" && b !== null)
|
|
11
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
12
|
+
extendStatics(d, b);
|
|
13
|
+
function __() { this.constructor = d; }
|
|
14
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
15
|
+
};
|
|
16
|
+
})();
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
var operation_1 = require("../types/operation");
|
|
19
|
+
var ContinueOperation = /** @class */ (function (_super) {
|
|
20
|
+
__extends(ContinueOperation, _super);
|
|
21
|
+
function ContinueOperation(ast) {
|
|
22
|
+
var _this = _super.call(this) || this;
|
|
23
|
+
var me = _this;
|
|
24
|
+
me.ast = ast;
|
|
25
|
+
return _this;
|
|
26
|
+
}
|
|
27
|
+
ContinueOperation.prototype.run = function (operationContext) {
|
|
28
|
+
var me = this;
|
|
29
|
+
var loopContext = operationContext.getMemory('loopContext');
|
|
30
|
+
loopContext.isContinue = true;
|
|
31
|
+
};
|
|
32
|
+
return ContinueOperation;
|
|
33
|
+
}(operation_1.Operation));
|
|
34
|
+
exports.default = ContinueOperation;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Operation } from '../types/operation';
|
|
2
|
+
import { OperationContext } from '../context';
|
|
3
|
+
import { ASTBase } from 'greybel-core';
|
|
4
|
+
export default class DebuggerOperation extends Operation {
|
|
5
|
+
constructor(ast: ASTBase);
|
|
6
|
+
run(operationContext: OperationContext): void;
|
|
7
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __extends = (this && this.__extends) || (function () {
|
|
3
|
+
var extendStatics = function (d, b) {
|
|
4
|
+
extendStatics = Object.setPrototypeOf ||
|
|
5
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
|
+
return extendStatics(d, b);
|
|
8
|
+
};
|
|
9
|
+
return function (d, b) {
|
|
10
|
+
if (typeof b !== "function" && b !== null)
|
|
11
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
12
|
+
extendStatics(d, b);
|
|
13
|
+
function __() { this.constructor = d; }
|
|
14
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
15
|
+
};
|
|
16
|
+
})();
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
var operation_1 = require("../types/operation");
|
|
19
|
+
var DebuggerOperation = /** @class */ (function (_super) {
|
|
20
|
+
__extends(DebuggerOperation, _super);
|
|
21
|
+
function DebuggerOperation(ast) {
|
|
22
|
+
var _this = _super.call(this) || this;
|
|
23
|
+
var me = _this;
|
|
24
|
+
me.ast = ast;
|
|
25
|
+
return _this;
|
|
26
|
+
}
|
|
27
|
+
DebuggerOperation.prototype.run = function (operationContext) {
|
|
28
|
+
operationContext.debugger.setBreakpoint(true);
|
|
29
|
+
};
|
|
30
|
+
return DebuggerOperation;
|
|
31
|
+
}(operation_1.Operation));
|
|
32
|
+
exports.default = DebuggerOperation;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Operation } from '../types/operation';
|
|
2
|
+
import { ASTBase } from 'greybel-core';
|
|
3
|
+
import BodyOperation from './body';
|
|
4
|
+
export interface ElseIfOperationOptions {
|
|
5
|
+
condition: any;
|
|
6
|
+
body: BodyOperation;
|
|
7
|
+
}
|
|
8
|
+
export default class ElseIfOperation extends Operation {
|
|
9
|
+
condition: any;
|
|
10
|
+
body: any;
|
|
11
|
+
constructor(ast: ASTBase, options: ElseIfOperationOptions);
|
|
12
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __extends = (this && this.__extends) || (function () {
|
|
3
|
+
var extendStatics = function (d, b) {
|
|
4
|
+
extendStatics = Object.setPrototypeOf ||
|
|
5
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
|
+
return extendStatics(d, b);
|
|
8
|
+
};
|
|
9
|
+
return function (d, b) {
|
|
10
|
+
if (typeof b !== "function" && b !== null)
|
|
11
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
12
|
+
extendStatics(d, b);
|
|
13
|
+
function __() { this.constructor = d; }
|
|
14
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
15
|
+
};
|
|
16
|
+
})();
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
var operation_1 = require("../types/operation");
|
|
19
|
+
var ElseIfOperation = /** @class */ (function (_super) {
|
|
20
|
+
__extends(ElseIfOperation, _super);
|
|
21
|
+
function ElseIfOperation(ast, options) {
|
|
22
|
+
var _this = _super.call(this) || this;
|
|
23
|
+
var me = _this;
|
|
24
|
+
me.ast = ast;
|
|
25
|
+
me.condition = options.condition;
|
|
26
|
+
me.body = options.body;
|
|
27
|
+
return _this;
|
|
28
|
+
}
|
|
29
|
+
return ElseIfOperation;
|
|
30
|
+
}(operation_1.Operation));
|
|
31
|
+
exports.default = ElseIfOperation;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Operation } from '../types/operation';
|
|
2
|
+
import { ASTBase } from 'greybel-core';
|
|
3
|
+
import BodyOperation from './body';
|
|
4
|
+
export interface ElseOperationOptions {
|
|
5
|
+
body: BodyOperation;
|
|
6
|
+
}
|
|
7
|
+
export default class ElseOperation extends Operation {
|
|
8
|
+
body: any;
|
|
9
|
+
constructor(ast: ASTBase, options: ElseOperationOptions);
|
|
10
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __extends = (this && this.__extends) || (function () {
|
|
3
|
+
var extendStatics = function (d, b) {
|
|
4
|
+
extendStatics = Object.setPrototypeOf ||
|
|
5
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
|
+
return extendStatics(d, b);
|
|
8
|
+
};
|
|
9
|
+
return function (d, b) {
|
|
10
|
+
if (typeof b !== "function" && b !== null)
|
|
11
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
12
|
+
extendStatics(d, b);
|
|
13
|
+
function __() { this.constructor = d; }
|
|
14
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
15
|
+
};
|
|
16
|
+
})();
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
var operation_1 = require("../types/operation");
|
|
19
|
+
var ElseOperation = /** @class */ (function (_super) {
|
|
20
|
+
__extends(ElseOperation, _super);
|
|
21
|
+
function ElseOperation(ast, options) {
|
|
22
|
+
var _this = _super.call(this) || this;
|
|
23
|
+
var me = _this;
|
|
24
|
+
me.ast = ast;
|
|
25
|
+
me.body = options.body;
|
|
26
|
+
return _this;
|
|
27
|
+
}
|
|
28
|
+
return ElseOperation;
|
|
29
|
+
}(operation_1.Operation));
|
|
30
|
+
exports.default = ElseOperation;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Operation } from '../types/operation';
|
|
2
|
+
import { OperationContext } from '../context';
|
|
3
|
+
import { ASTBase } from 'greybel-core';
|
|
4
|
+
import BodyOperation from './body';
|
|
5
|
+
export interface ForOperationOptions {
|
|
6
|
+
variable: any;
|
|
7
|
+
iterator: any;
|
|
8
|
+
body: BodyOperation;
|
|
9
|
+
}
|
|
10
|
+
export default class ForOperation extends Operation {
|
|
11
|
+
variable: any;
|
|
12
|
+
iterator: any;
|
|
13
|
+
body: BodyOperation;
|
|
14
|
+
constructor(ast: ASTBase, options: ForOperationOptions);
|
|
15
|
+
run(operationContext: OperationContext): Promise<void>;
|
|
16
|
+
}
|