greybel-interpreter 0.4.9 → 0.5.3

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.
Files changed (83) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +2 -2
  3. package/dist/context.d.ts +96 -96
  4. package/dist/context.js +392 -392
  5. package/dist/cps.d.ts +15 -15
  6. package/dist/cps.js +849 -849
  7. package/dist/custom-types/boolean.d.ts +10 -10
  8. package/dist/custom-types/boolean.js +41 -41
  9. package/dist/custom-types/list.d.ts +25 -25
  10. package/dist/custom-types/list.js +288 -289
  11. package/dist/custom-types/map.d.ts +28 -28
  12. package/dist/custom-types/map.js +238 -238
  13. package/dist/custom-types/nil.d.ts +8 -8
  14. package/dist/custom-types/nil.js +38 -38
  15. package/dist/custom-types/number.d.ts +10 -10
  16. package/dist/custom-types/number.js +41 -41
  17. package/dist/custom-types/string.d.ts +21 -21
  18. package/dist/custom-types/string.js +131 -131
  19. package/dist/expressions/assign.d.ts +13 -13
  20. package/dist/expressions/assign.js +174 -174
  21. package/dist/expressions/binary-negated-expression.d.ts +19 -19
  22. package/dist/expressions/binary-negated-expression.js +131 -131
  23. package/dist/expressions/call.d.ts +14 -14
  24. package/dist/expressions/call.js +207 -207
  25. package/dist/expressions/import.d.ts +14 -14
  26. package/dist/expressions/import.js +155 -155
  27. package/dist/expressions/include.d.ts +13 -13
  28. package/dist/expressions/include.js +132 -132
  29. package/dist/expressions/list.d.ts +14 -14
  30. package/dist/expressions/list.js +134 -134
  31. package/dist/expressions/logical-and-binary.d.ts +23 -23
  32. package/dist/expressions/logical-and-binary.js +216 -212
  33. package/dist/expressions/map.d.ts +19 -19
  34. package/dist/expressions/map.js +190 -190
  35. package/dist/expressions/path.d.ts +31 -31
  36. package/dist/expressions/path.js +364 -364
  37. package/dist/index.d.ts +36 -36
  38. package/dist/index.js +89 -89
  39. package/dist/interpreter.d.ts +29 -29
  40. package/dist/interpreter.js +210 -210
  41. package/dist/operations/argument.d.ts +8 -8
  42. package/dist/operations/argument.js +145 -145
  43. package/dist/operations/body.d.ts +8 -8
  44. package/dist/operations/body.js +140 -140
  45. package/dist/operations/break.d.ts +7 -7
  46. package/dist/operations/break.js +34 -34
  47. package/dist/operations/continue.d.ts +7 -7
  48. package/dist/operations/continue.js +34 -34
  49. package/dist/operations/debugger.d.ts +7 -7
  50. package/dist/operations/debugger.js +32 -32
  51. package/dist/operations/else-if.d.ts +12 -12
  52. package/dist/operations/else-if.js +31 -31
  53. package/dist/operations/else.d.ts +10 -10
  54. package/dist/operations/else.js +30 -30
  55. package/dist/operations/for.d.ts +16 -16
  56. package/dist/operations/for.js +143 -143
  57. package/dist/operations/function.d.ts +21 -21
  58. package/dist/operations/function.js +133 -133
  59. package/dist/operations/if-statement.d.ts +8 -8
  60. package/dist/operations/if-statement.js +153 -153
  61. package/dist/operations/if.d.ts +12 -12
  62. package/dist/operations/if.js +31 -31
  63. package/dist/operations/new.d.ts +11 -11
  64. package/dist/operations/new.js +96 -96
  65. package/dist/operations/not.d.ts +11 -11
  66. package/dist/operations/not.js +95 -95
  67. package/dist/operations/reference.d.ts +11 -11
  68. package/dist/operations/reference.js +102 -102
  69. package/dist/operations/return.d.ts +11 -11
  70. package/dist/operations/return.js +102 -102
  71. package/dist/operations/while.d.ts +14 -14
  72. package/dist/operations/while.js +127 -127
  73. package/dist/resource.d.ts +9 -9
  74. package/dist/resource.js +29 -29
  75. package/dist/typer.d.ts +6 -6
  76. package/dist/typer.js +95 -95
  77. package/dist/types/custom-type.d.ts +19 -19
  78. package/dist/types/custom-type.js +58 -58
  79. package/dist/types/expression.d.ts +6 -6
  80. package/dist/types/expression.js +9 -9
  81. package/dist/types/operation.d.ts +9 -9
  82. package/dist/types/operation.js +38 -38
  83. package/package.json +45 -45
@@ -1,238 +1,238 @@
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 __read = (this && this.__read) || function (o, n) {
18
- var m = typeof Symbol === "function" && o[Symbol.iterator];
19
- if (!m) return o;
20
- var i = m.call(o), r, ar = [], e;
21
- try {
22
- while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
23
- }
24
- catch (error) { e = { error: error }; }
25
- finally {
26
- try {
27
- if (r && !r.done && (m = i["return"])) m.call(i);
28
- }
29
- finally { if (e) throw e.error; }
30
- }
31
- return ar;
32
- };
33
- var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
34
- if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
35
- if (ar || !(i in from)) {
36
- if (!ar) ar = Array.prototype.slice.call(from, 0, i);
37
- ar[i] = from[i];
38
- }
39
- }
40
- return to.concat(ar || Array.prototype.slice.call(from));
41
- };
42
- Object.defineProperty(exports, "__esModule", { value: true });
43
- exports.CustomMapIterator = void 0;
44
- var custom_type_1 = require("../types/custom-type");
45
- var operation_1 = require("../types/operation");
46
- var CustomMapIterator = /** @class */ (function () {
47
- function CustomMapIterator(value) {
48
- var me = this;
49
- me.value = value;
50
- me.index = 0;
51
- }
52
- CustomMapIterator.prototype.next = function () {
53
- var me = this;
54
- var keys = Object.keys(me.value);
55
- if (me.index === keys.length) {
56
- return {
57
- value: null,
58
- done: true
59
- };
60
- }
61
- var key = keys[me.index++];
62
- return {
63
- value: {
64
- key: key,
65
- value: me.value[key]
66
- },
67
- done: false
68
- };
69
- };
70
- return CustomMapIterator;
71
- }());
72
- exports.CustomMapIterator = CustomMapIterator;
73
- var CustomMap = /** @class */ (function (_super) {
74
- __extends(CustomMap, _super);
75
- function CustomMap(value) {
76
- var _this = _super.call(this) || this;
77
- var me = _this;
78
- me.value = value || new Map();
79
- me.isInstance = false;
80
- return _this;
81
- }
82
- CustomMap.prototype[Symbol.iterator] = function () {
83
- return new CustomMapIterator(this.value);
84
- };
85
- CustomMap.prototype.extend = function (value) {
86
- var me = this;
87
- me.value = new Map(__spreadArray(__spreadArray([], __read(me.value.entries()), false), __read(value.entries()), false));
88
- return me;
89
- };
90
- CustomMap.prototype.set = function (path, value) {
91
- var me = this;
92
- var traversalPath = [].concat(path);
93
- var refs = me.value;
94
- var last = traversalPath.pop();
95
- var current = traversalPath.shift();
96
- var origin = refs;
97
- if (current != null) {
98
- if (origin.has(current)) {
99
- origin = origin.get(current);
100
- if (origin instanceof custom_type_1.CustomObjectType) {
101
- return origin.set(traversalPath.concat(last), value);
102
- }
103
- }
104
- else {
105
- throw new Error("Cannot set path ".concat(path.join('.')));
106
- }
107
- }
108
- if (origin) {
109
- if (value instanceof operation_1.FunctionOperationBase) {
110
- origin.set(last, value.fork(me));
111
- }
112
- else {
113
- origin.set(last, value);
114
- }
115
- }
116
- else {
117
- throw new Error("Cannot set path ".concat(path.join('.')));
118
- }
119
- };
120
- CustomMap.prototype.get = function (path) {
121
- var me = this;
122
- if (path.length === 0) {
123
- return Promise.resolve(me);
124
- }
125
- var traversalPath = [].concat(path);
126
- var refs = me.value;
127
- var current = traversalPath.shift();
128
- var currentValue = current.valueOf();
129
- var origin = refs;
130
- if (currentValue != null) {
131
- if (origin.has(currentValue)) {
132
- origin = origin.get(currentValue);
133
- if (traversalPath.length > 0 && origin instanceof custom_type_1.CustomObjectType) {
134
- return origin.get(traversalPath);
135
- }
136
- }
137
- else if (path.length === 1 && CustomMap.intrinsics.has(currentValue)) {
138
- return Promise.resolve(CustomMap.intrinsics.get(currentValue).bind(null, me));
139
- }
140
- else {
141
- throw new Error("Cannot get path ".concat(path.join('.')));
142
- }
143
- }
144
- else {
145
- return null;
146
- }
147
- return Promise.resolve(origin);
148
- };
149
- CustomMap.prototype.getCallable = function (path) {
150
- var me = this;
151
- var traversalPath = [].concat(path);
152
- var refs = me.value;
153
- var current = traversalPath.shift();
154
- var origin = refs;
155
- var context;
156
- if (current != null) {
157
- if (origin.has(current)) {
158
- context = origin;
159
- origin = origin.get(current);
160
- if (origin instanceof custom_type_1.CustomObjectType) {
161
- return origin.getCallable(traversalPath);
162
- }
163
- }
164
- else if (path.length === 1 && CustomMap.intrinsics.has(current)) {
165
- return Promise.resolve({
166
- origin: CustomMap.intrinsics.get(current).bind(null, me),
167
- context: me
168
- });
169
- }
170
- else {
171
- throw new Error("Cannot get path ".concat(path.join('.')));
172
- }
173
- }
174
- return Promise.resolve({
175
- origin: origin,
176
- context: context
177
- });
178
- };
179
- CustomMap.prototype.callMethod = function (method) {
180
- var _a;
181
- var args = [];
182
- for (var _i = 1; _i < arguments.length; _i++) {
183
- args[_i - 1] = arguments[_i];
184
- }
185
- if (method.length === 0) {
186
- throw new Error('Unexpected method length');
187
- }
188
- var me = this;
189
- var key = method[0].valueOf();
190
- if (method.length > 1) {
191
- if (me.value.has(key)) {
192
- return (_a = me.value.get(key)).callMethod.apply(_a, __spreadArray([method.slice(1)], __read(args), false));
193
- }
194
- throw new Error("Unexpected method path");
195
- }
196
- if (!CustomMap.intrinsics.has(key)) {
197
- throw new Error("Cannot access ".concat(key, " in map"));
198
- }
199
- return CustomMap.intrinsics.get(key).apply(void 0, __spreadArray([me], __read(args), false));
200
- };
201
- CustomMap.prototype.createInstance = function () {
202
- var me = this;
203
- var newInstance = new CustomMap();
204
- newInstance.isInstance = true;
205
- me.value.forEach(function (item, key) {
206
- newInstance.value.set(key, item instanceof operation_1.FunctionOperationBase
207
- ? item.fork(newInstance)
208
- : item);
209
- });
210
- return newInstance;
211
- };
212
- CustomMap.prototype.getType = function () {
213
- var _a;
214
- var me = this;
215
- return ((_a = me.value.get('classID')) === null || _a === void 0 ? void 0 : _a.toString()) || 'map';
216
- };
217
- CustomMap.prototype.valueOf = function () {
218
- var me = this;
219
- var value = me.value;
220
- return value.size === 0 ? null : me;
221
- };
222
- CustomMap.prototype.toString = function () {
223
- var me = this;
224
- var body = Object
225
- .entries(me.value)
226
- .map(function (_a) {
227
- var _b = __read(_a, 2), key = _b[0], value = _b[1];
228
- return "\"".concat(key, "\": ").concat(value.valueOf().toString());
229
- });
230
- return "{".concat(body.join(','), "}");
231
- };
232
- CustomMap.prototype.fork = function () {
233
- return new CustomMap(this.value);
234
- };
235
- CustomMap.intrinsics = new Map();
236
- return CustomMap;
237
- }(custom_type_1.CustomObjectType));
238
- exports.default = CustomMap;
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 __read = (this && this.__read) || function (o, n) {
18
+ var m = typeof Symbol === "function" && o[Symbol.iterator];
19
+ if (!m) return o;
20
+ var i = m.call(o), r, ar = [], e;
21
+ try {
22
+ while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
23
+ }
24
+ catch (error) { e = { error: error }; }
25
+ finally {
26
+ try {
27
+ if (r && !r.done && (m = i["return"])) m.call(i);
28
+ }
29
+ finally { if (e) throw e.error; }
30
+ }
31
+ return ar;
32
+ };
33
+ var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
34
+ if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
35
+ if (ar || !(i in from)) {
36
+ if (!ar) ar = Array.prototype.slice.call(from, 0, i);
37
+ ar[i] = from[i];
38
+ }
39
+ }
40
+ return to.concat(ar || Array.prototype.slice.call(from));
41
+ };
42
+ Object.defineProperty(exports, "__esModule", { value: true });
43
+ exports.CustomMapIterator = void 0;
44
+ var custom_type_1 = require("../types/custom-type");
45
+ var operation_1 = require("../types/operation");
46
+ var CustomMapIterator = /** @class */ (function () {
47
+ function CustomMapIterator(value) {
48
+ var me = this;
49
+ me.value = value;
50
+ me.index = 0;
51
+ }
52
+ CustomMapIterator.prototype.next = function () {
53
+ var me = this;
54
+ var keys = Object.keys(me.value);
55
+ if (me.index === keys.length) {
56
+ return {
57
+ value: null,
58
+ done: true
59
+ };
60
+ }
61
+ var key = keys[me.index++];
62
+ return {
63
+ value: {
64
+ key: key,
65
+ value: me.value[key]
66
+ },
67
+ done: false
68
+ };
69
+ };
70
+ return CustomMapIterator;
71
+ }());
72
+ exports.CustomMapIterator = CustomMapIterator;
73
+ var CustomMap = /** @class */ (function (_super) {
74
+ __extends(CustomMap, _super);
75
+ function CustomMap(value) {
76
+ var _this = _super.call(this) || this;
77
+ var me = _this;
78
+ me.value = value || new Map();
79
+ me.isInstance = false;
80
+ return _this;
81
+ }
82
+ CustomMap.prototype[Symbol.iterator] = function () {
83
+ return new CustomMapIterator(this.value);
84
+ };
85
+ CustomMap.prototype.extend = function (value) {
86
+ var me = this;
87
+ me.value = new Map(__spreadArray(__spreadArray([], __read(me.value.entries()), false), __read(value.entries()), false));
88
+ return me;
89
+ };
90
+ CustomMap.prototype.set = function (path, value) {
91
+ var me = this;
92
+ var traversalPath = [].concat(path);
93
+ var refs = me.value;
94
+ var last = traversalPath.pop();
95
+ var current = traversalPath.shift();
96
+ var origin = refs;
97
+ if (current != null) {
98
+ if (origin.has(current)) {
99
+ origin = origin.get(current);
100
+ if (origin instanceof custom_type_1.CustomObjectType) {
101
+ return origin.set(traversalPath.concat(last), value);
102
+ }
103
+ }
104
+ else {
105
+ throw new Error("Cannot set path ".concat(path.join('.')));
106
+ }
107
+ }
108
+ if (origin) {
109
+ if (value instanceof operation_1.FunctionOperationBase) {
110
+ origin.set(last, value.fork(me));
111
+ }
112
+ else {
113
+ origin.set(last, value);
114
+ }
115
+ }
116
+ else {
117
+ throw new Error("Cannot set path ".concat(path.join('.')));
118
+ }
119
+ };
120
+ CustomMap.prototype.get = function (path) {
121
+ var me = this;
122
+ if (path.length === 0) {
123
+ return Promise.resolve(me);
124
+ }
125
+ var traversalPath = [].concat(path);
126
+ var refs = me.value;
127
+ var current = traversalPath.shift();
128
+ var currentValue = current.valueOf();
129
+ var origin = refs;
130
+ if (currentValue != null) {
131
+ if (origin.has(currentValue)) {
132
+ origin = origin.get(currentValue);
133
+ if (traversalPath.length > 0 && origin instanceof custom_type_1.CustomObjectType) {
134
+ return origin.get(traversalPath);
135
+ }
136
+ }
137
+ else if (path.length === 1 && CustomMap.intrinsics.has(currentValue)) {
138
+ return Promise.resolve(CustomMap.intrinsics.get(currentValue).bind(null, me));
139
+ }
140
+ else {
141
+ throw new Error("Cannot get path ".concat(path.join('.')));
142
+ }
143
+ }
144
+ else {
145
+ return null;
146
+ }
147
+ return Promise.resolve(origin);
148
+ };
149
+ CustomMap.prototype.getCallable = function (path) {
150
+ var me = this;
151
+ var traversalPath = [].concat(path);
152
+ var refs = me.value;
153
+ var current = traversalPath.shift();
154
+ var origin = refs;
155
+ var context;
156
+ if (current != null) {
157
+ if (origin.has(current)) {
158
+ context = origin;
159
+ origin = origin.get(current);
160
+ if (origin instanceof custom_type_1.CustomObjectType) {
161
+ return origin.getCallable(traversalPath);
162
+ }
163
+ }
164
+ else if (path.length === 1 && CustomMap.intrinsics.has(current)) {
165
+ return Promise.resolve({
166
+ origin: CustomMap.intrinsics.get(current).bind(null, me),
167
+ context: me
168
+ });
169
+ }
170
+ else {
171
+ throw new Error("Cannot get path ".concat(path.join('.')));
172
+ }
173
+ }
174
+ return Promise.resolve({
175
+ origin: origin,
176
+ context: context
177
+ });
178
+ };
179
+ CustomMap.prototype.callMethod = function (method) {
180
+ var _a;
181
+ var args = [];
182
+ for (var _i = 1; _i < arguments.length; _i++) {
183
+ args[_i - 1] = arguments[_i];
184
+ }
185
+ if (method.length === 0) {
186
+ throw new Error('Unexpected method length');
187
+ }
188
+ var me = this;
189
+ var key = method[0].valueOf();
190
+ if (method.length > 1) {
191
+ if (me.value.has(key)) {
192
+ return (_a = me.value.get(key)).callMethod.apply(_a, __spreadArray([method.slice(1)], __read(args), false));
193
+ }
194
+ throw new Error("Unexpected method path");
195
+ }
196
+ if (!CustomMap.intrinsics.has(key)) {
197
+ throw new Error("Cannot access ".concat(key, " in map"));
198
+ }
199
+ return CustomMap.intrinsics.get(key).apply(void 0, __spreadArray([me], __read(args), false));
200
+ };
201
+ CustomMap.prototype.createInstance = function () {
202
+ var me = this;
203
+ var newInstance = new CustomMap();
204
+ newInstance.isInstance = true;
205
+ me.value.forEach(function (item, key) {
206
+ newInstance.value.set(key, item instanceof operation_1.FunctionOperationBase
207
+ ? item.fork(newInstance)
208
+ : item);
209
+ });
210
+ return newInstance;
211
+ };
212
+ CustomMap.prototype.getType = function () {
213
+ var _a;
214
+ var me = this;
215
+ return ((_a = me.value.get('classID')) === null || _a === void 0 ? void 0 : _a.toString()) || 'map';
216
+ };
217
+ CustomMap.prototype.valueOf = function () {
218
+ var me = this;
219
+ var value = me.value;
220
+ return value.size === 0 ? null : me;
221
+ };
222
+ CustomMap.prototype.toString = function () {
223
+ var me = this;
224
+ var body = Object
225
+ .entries(me.value)
226
+ .map(function (_a) {
227
+ var _b = __read(_a, 2), key = _b[0], value = _b[1];
228
+ return "\"".concat(key, "\": ").concat(value.valueOf().toString());
229
+ });
230
+ return "{".concat(body.join(','), "}");
231
+ };
232
+ CustomMap.prototype.fork = function () {
233
+ return new CustomMap(this.value);
234
+ };
235
+ CustomMap.intrinsics = new Map();
236
+ return CustomMap;
237
+ }(custom_type_1.CustomObjectType));
238
+ exports.default = CustomMap;
@@ -1,8 +1,8 @@
1
- import { CustomLiteralType } from '../types/custom-type';
2
- export default class CustomNil extends CustomLiteralType {
3
- static intrinsics: Map<string, Function>;
4
- value: null;
5
- getType(): string;
6
- valueOf(): null;
7
- toString(): string;
8
- }
1
+ import { CustomLiteralType } from '../types/custom-type';
2
+ export default class CustomNil extends CustomLiteralType {
3
+ static intrinsics: Map<string, Function>;
4
+ value: null;
5
+ getType(): string;
6
+ valueOf(): null;
7
+ toString(): string;
8
+ }
@@ -1,38 +1,38 @@
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 custom_type_1 = require("../types/custom-type");
19
- var CustomNil = /** @class */ (function (_super) {
20
- __extends(CustomNil, _super);
21
- function CustomNil() {
22
- var _this = _super !== null && _super.apply(this, arguments) || this;
23
- _this.value = null;
24
- return _this;
25
- }
26
- CustomNil.prototype.getType = function () {
27
- return 'null';
28
- };
29
- CustomNil.prototype.valueOf = function () {
30
- return null;
31
- };
32
- CustomNil.prototype.toString = function () {
33
- return 'null';
34
- };
35
- CustomNil.intrinsics = new Map();
36
- return CustomNil;
37
- }(custom_type_1.CustomLiteralType));
38
- exports.default = CustomNil;
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 custom_type_1 = require("../types/custom-type");
19
+ var CustomNil = /** @class */ (function (_super) {
20
+ __extends(CustomNil, _super);
21
+ function CustomNil() {
22
+ var _this = _super !== null && _super.apply(this, arguments) || this;
23
+ _this.value = null;
24
+ return _this;
25
+ }
26
+ CustomNil.prototype.getType = function () {
27
+ return 'null';
28
+ };
29
+ CustomNil.prototype.valueOf = function () {
30
+ return null;
31
+ };
32
+ CustomNil.prototype.toString = function () {
33
+ return 'null';
34
+ };
35
+ CustomNil.intrinsics = new Map();
36
+ return CustomNil;
37
+ }(custom_type_1.CustomLiteralType));
38
+ exports.default = CustomNil;
@@ -1,10 +1,10 @@
1
- import { CustomLiteralType } from '../types/custom-type';
2
- export default class CustomNumber extends CustomLiteralType {
3
- static intrinsics: Map<string, Function>;
4
- value: number;
5
- constructor(value: number);
6
- getType(): string;
7
- valueOf(): number;
8
- toString(): string;
9
- fork(): CustomNumber;
10
- }
1
+ import { CustomLiteralType } from '../types/custom-type';
2
+ export default class CustomNumber extends CustomLiteralType {
3
+ static intrinsics: Map<string, Function>;
4
+ value: number;
5
+ constructor(value: number);
6
+ getType(): string;
7
+ valueOf(): number;
8
+ toString(): string;
9
+ fork(): CustomNumber;
10
+ }