-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathvalue.ts
More file actions
145 lines (118 loc) · 2.77 KB
/
value.ts
File metadata and controls
145 lines (118 loc) · 2.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
import type { Node } from '../node.js';
import type { Scope } from './scope.js';
export type VNull = {
type: 'null';
};
export type VBool = {
type: 'bool';
value: boolean;
};
export type VNum = {
type: 'num';
value: number;
};
export type VStr = {
type: 'str';
value: string;
};
export type VArr = {
type: 'arr';
value: Value[];
};
export type VObj = {
type: 'obj';
value: Map<string, Value>;
};
/**
* When your AiScript NATIVE function passes VFn.call to other caller(s) whose error thrown outside the scope, use VFn.topCall instead to keep it under AiScript error control system.
*/
export type VFn = {
type: 'fn';
args?: string[];
statements?: Node[];
native?: (args: (Value | undefined)[], opts: {
call: (fn: VFn, args: Value[]) => Promise<Value>;
topCall: (fn: VFn, args: Value[]) => Promise<Value>;
registerAbortHandler: (handler: () => void) => void;
unregisterAbortHandler: (handler: () => void) => void;
}) => Value | Promise<Value> | void;
scope?: Scope;
};
export type VReturn = {
type: 'return';
value: Value;
};
export type VBreak = {
type: 'break';
value: null;
};
export type VContinue = {
type: 'continue';
value: null;
};
export type VError = {
type: 'error';
value: string;
info?: Value;
};
export type Value = VNull | VBool | VNum | VStr | VArr | VObj | VFn | VReturn | VBreak | VContinue | VError;
export const NULL = {
type: 'null' as const,
};
export const TRUE = {
type: 'bool' as const,
value: true,
};
export const FALSE = {
type: 'bool' as const,
value: false,
};
export const NUM = (num: VNum['value']): VNum => ({
type: 'num' as const,
value: num,
});
export const STR = (str: VStr['value']): VStr => ({
type: 'str' as const,
value: str,
});
export const BOOL = (bool: VBool['value']): VBool => ({
type: 'bool' as const,
value: bool,
});
export const OBJ = (obj: VObj['value']): VObj => ({
type: 'obj' as const,
value: obj,
});
export const ARR = (arr: VArr['value']): VArr => ({
type: 'arr' as const,
value: arr,
});
export const FN = (args: VFn['args'], statements: VFn['statements'], scope: VFn['scope']): VFn => ({
type: 'fn' as const,
args: args,
statements: statements,
scope: scope,
});
export const FN_NATIVE = (fn: VFn['native']): VFn => ({
type: 'fn' as const,
native: fn,
});
// Return文で値が返されたことを示すためのラッパー
export const RETURN = (v: VReturn['value']): Value => ({
type: 'return' as const,
value: v,
});
export const BREAK = (): Value => ({
type: 'break' as const,
value: null,
});
export const CONTINUE = (): Value => ({
type: 'continue' as const,
value: null,
});
export const unWrapRet = (v: Value): Value => v.type === 'return' ? v.value : v;
export const ERROR = (name: string, info?: Value): Value => ({
type: 'error' as const,
value: name,
info: info,
});