greybel-interpreter 1.1.7 → 1.2.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/.editorconfig +14 -14
- package/.eslintrc +47 -47
- package/LICENSE +21 -21
- package/README.md +2 -2
- package/dist/context.d.ts +109 -109
- package/dist/context.js +382 -382
- package/dist/cps.d.ts +14 -14
- package/dist/cps.js +213 -213
- package/dist/handler/error.d.ts +6 -6
- package/dist/handler/error.js +35 -35
- package/dist/handler/output.d.ts +6 -6
- package/dist/handler/output.js +35 -35
- package/dist/handler/resource.d.ts +12 -12
- package/dist/handler/resource.js +51 -51
- package/dist/handler-container.d.ts +14 -14
- package/dist/handler-container.js +16 -16
- package/dist/index.d.ts +44 -44
- package/dist/index.js +129 -129
- package/dist/interpreter.d.ts +41 -41
- package/dist/interpreter.js +315 -315
- package/dist/intrinsics-container.d.ts +7 -7
- package/dist/intrinsics-container.js +19 -19
- package/dist/operations/assign.d.ts +13 -13
- package/dist/operations/assign.js +111 -111
- package/dist/operations/block.d.ts +12 -12
- package/dist/operations/block.js +108 -108
- package/dist/operations/break.d.ts +10 -10
- package/dist/operations/break.js +41 -41
- package/dist/operations/call.d.ts +13 -13
- package/dist/operations/call.js +124 -124
- package/dist/operations/chunk.d.ts +12 -12
- package/dist/operations/chunk.js +85 -85
- package/dist/operations/continue.d.ts +10 -10
- package/dist/operations/continue.js +41 -41
- package/dist/operations/debugger-statement.d.ts +10 -10
- package/dist/operations/debugger-statement.js +39 -39
- package/dist/operations/evaluate.d.ts +39 -39
- package/dist/operations/evaluate.js +366 -366
- package/dist/operations/for.d.ts +14 -14
- package/dist/operations/for.js +152 -152
- package/dist/operations/function-reference.d.ts +12 -12
- package/dist/operations/function-reference.js +103 -103
- package/dist/operations/function.d.ts +14 -14
- package/dist/operations/function.js +200 -200
- package/dist/operations/if-statement.d.ts +19 -19
- package/dist/operations/if-statement.js +181 -181
- package/dist/operations/import.d.ts +17 -17
- package/dist/operations/import.js +119 -119
- package/dist/operations/include.d.ts +13 -13
- package/dist/operations/include.js +95 -95
- package/dist/operations/list.d.ts +11 -11
- package/dist/operations/list.js +111 -111
- package/dist/operations/literal.d.ts +11 -11
- package/dist/operations/literal.js +58 -58
- package/dist/operations/map.d.ts +11 -11
- package/dist/operations/map.js +171 -171
- package/dist/operations/negated-binary.d.ts +11 -11
- package/dist/operations/negated-binary.js +109 -109
- package/dist/operations/new-instance.d.ts +11 -11
- package/dist/operations/new-instance.js +100 -100
- package/dist/operations/noop.d.ts +9 -9
- package/dist/operations/noop.js +36 -36
- package/dist/operations/not.d.ts +11 -11
- package/dist/operations/not.js +96 -96
- package/dist/operations/operation.d.ts +13 -13
- package/dist/operations/operation.js +11 -11
- package/dist/operations/reference.d.ts +9 -9
- package/dist/operations/reference.js +37 -37
- package/dist/operations/resolve.d.ts +38 -38
- package/dist/operations/resolve.js +330 -330
- package/dist/operations/return.d.ts +11 -11
- package/dist/operations/return.js +107 -107
- package/dist/operations/while.d.ts +13 -13
- package/dist/operations/while.js +136 -136
- package/dist/types/boolean.d.ts +11 -11
- package/dist/types/boolean.js +46 -46
- package/dist/types/default.d.ts +11 -11
- package/dist/types/default.js +20 -20
- package/dist/types/function.d.ts +32 -32
- package/dist/types/function.js +174 -174
- package/dist/types/generics.d.ts +18 -18
- package/dist/types/generics.js +40 -40
- package/dist/types/interface.d.ts +23 -23
- package/dist/types/interface.js +103 -103
- package/dist/types/list.d.ts +31 -31
- package/dist/types/list.js +209 -209
- package/dist/types/map.d.ts +35 -35
- package/dist/types/map.js +287 -287
- package/dist/types/nil.d.ts +10 -10
- package/dist/types/nil.js +46 -46
- package/dist/types/number.d.ts +11 -11
- package/dist/types/number.js +46 -46
- package/dist/types/string.d.ts +33 -33
- package/dist/types/string.js +145 -145
- package/dist/utils/path.d.ts +10 -10
- package/dist/utils/path.js +59 -59
- package/package.json +58 -58
package/dist/interpreter.d.ts
CHANGED
|
@@ -1,41 +1,41 @@
|
|
|
1
|
-
/// <reference types="node" />
|
|
2
|
-
import EventEmitter from 'events';
|
|
3
|
-
import OperationContext, { Debugger } from './context';
|
|
4
|
-
import CPS from './cps';
|
|
5
|
-
import HandlerContainer from './handler-container';
|
|
6
|
-
import Operation from './operations/operation';
|
|
7
|
-
import { CustomValue } from './types/generics';
|
|
8
|
-
import CustomString from './types/string';
|
|
9
|
-
export declare const PARAMS_PROPERTY: CustomString;
|
|
10
|
-
export interface InterpreterOptions {
|
|
11
|
-
target?: string;
|
|
12
|
-
api?: Map<string, CustomValue>;
|
|
13
|
-
params?: Array<string>;
|
|
14
|
-
handler?: HandlerContainer;
|
|
15
|
-
debugger?: Debugger;
|
|
16
|
-
}
|
|
17
|
-
export default class Interpreter extends EventEmitter {
|
|
18
|
-
target: string;
|
|
19
|
-
api: Map<string, CustomValue>;
|
|
20
|
-
params: Array<string>;
|
|
21
|
-
handler: HandlerContainer;
|
|
22
|
-
debugger: Debugger;
|
|
23
|
-
apiContext: OperationContext;
|
|
24
|
-
globalContext: OperationContext;
|
|
25
|
-
cps: CPS;
|
|
26
|
-
constructor(options: InterpreterOptions);
|
|
27
|
-
setTarget(target: string): Interpreter;
|
|
28
|
-
setDebugger(dbgr: Debugger): Interpreter;
|
|
29
|
-
setApi(newApi: Map<string, CustomValue>): Interpreter;
|
|
30
|
-
setHandler(handler: HandlerContainer): Interpreter;
|
|
31
|
-
prepare(code: string): Promise<Operation>;
|
|
32
|
-
inject(code: string, context?: OperationContext): Promise<Interpreter>;
|
|
33
|
-
injectInLastContext(code: string): Promise<Interpreter>;
|
|
34
|
-
run(customCode?: string): Promise<Interpreter>;
|
|
35
|
-
start(top: Operation): Promise<Interpreter>;
|
|
36
|
-
resume(): Interpreter;
|
|
37
|
-
pause(): Interpreter;
|
|
38
|
-
exit(): Promise<OperationContext>;
|
|
39
|
-
setGlobalVariable(path: string, value: CustomValue): Interpreter;
|
|
40
|
-
getGlobalVariable(path: string): CustomValue;
|
|
41
|
-
}
|
|
1
|
+
/// <reference types="node" />
|
|
2
|
+
import EventEmitter from 'events';
|
|
3
|
+
import OperationContext, { Debugger } from './context';
|
|
4
|
+
import CPS from './cps';
|
|
5
|
+
import HandlerContainer from './handler-container';
|
|
6
|
+
import Operation from './operations/operation';
|
|
7
|
+
import { CustomValue } from './types/generics';
|
|
8
|
+
import CustomString from './types/string';
|
|
9
|
+
export declare const PARAMS_PROPERTY: CustomString;
|
|
10
|
+
export interface InterpreterOptions {
|
|
11
|
+
target?: string;
|
|
12
|
+
api?: Map<string, CustomValue>;
|
|
13
|
+
params?: Array<string>;
|
|
14
|
+
handler?: HandlerContainer;
|
|
15
|
+
debugger?: Debugger;
|
|
16
|
+
}
|
|
17
|
+
export default class Interpreter extends EventEmitter {
|
|
18
|
+
target: string;
|
|
19
|
+
api: Map<string, CustomValue>;
|
|
20
|
+
params: Array<string>;
|
|
21
|
+
handler: HandlerContainer;
|
|
22
|
+
debugger: Debugger;
|
|
23
|
+
apiContext: OperationContext;
|
|
24
|
+
globalContext: OperationContext;
|
|
25
|
+
cps: CPS;
|
|
26
|
+
constructor(options: InterpreterOptions);
|
|
27
|
+
setTarget(target: string): Interpreter;
|
|
28
|
+
setDebugger(dbgr: Debugger): Interpreter;
|
|
29
|
+
setApi(newApi: Map<string, CustomValue>): Interpreter;
|
|
30
|
+
setHandler(handler: HandlerContainer): Interpreter;
|
|
31
|
+
prepare(code: string): Promise<Operation>;
|
|
32
|
+
inject(code: string, context?: OperationContext): Promise<Interpreter>;
|
|
33
|
+
injectInLastContext(code: string): Promise<Interpreter>;
|
|
34
|
+
run(customCode?: string): Promise<Interpreter>;
|
|
35
|
+
start(top: Operation): Promise<Interpreter>;
|
|
36
|
+
resume(): Interpreter;
|
|
37
|
+
pause(): Interpreter;
|
|
38
|
+
exit(): Promise<OperationContext>;
|
|
39
|
+
setGlobalVariable(path: string, value: CustomValue): Interpreter;
|
|
40
|
+
getGlobalVariable(path: string): CustomValue;
|
|
41
|
+
}
|