@hyperscale0/hsx 4.1.0 → 4.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/CHANGELOG.md +25 -0
- package/README.md +72 -0
- package/dist/src/compile.d.ts.map +1 -1
- package/dist/src/compile.js +2 -1
- package/dist/src/compile.js.map +1 -1
- package/dist/src/examples-bundle.d.ts +3 -0
- package/dist/src/examples-bundle.d.ts.map +1 -0
- package/dist/src/examples-bundle.js +17 -0
- package/dist/src/examples-bundle.js.map +1 -0
- package/dist/src/examples.d.ts +10 -0
- package/dist/src/examples.d.ts.map +1 -0
- package/dist/src/examples.js +2 -0
- package/dist/src/examples.js.map +1 -0
- package/dist/src/headers.d.ts +4 -2
- package/dist/src/headers.d.ts.map +1 -1
- package/dist/src/headers.js +16 -2
- package/dist/src/headers.js.map +1 -1
- package/dist/src/keywords.d.ts +50 -0
- package/dist/src/keywords.d.ts.map +1 -0
- package/dist/src/keywords.js +125 -0
- package/dist/src/keywords.js.map +1 -0
- package/dist/src/language.d.ts +26 -0
- package/dist/src/language.d.ts.map +1 -0
- package/dist/src/language.js +440 -0
- package/dist/src/language.js.map +1 -0
- package/dist/src/lex.d.ts +6 -1
- package/dist/src/lex.d.ts.map +1 -1
- package/dist/src/lex.js +21 -1
- package/dist/src/lex.js.map +1 -1
- package/dist/src/std-bundle.js +2 -2
- package/dist/src/std-bundle.js.map +1 -1
- package/dist/src/version.d.ts +1 -1
- package/dist/src/version.js +1 -1
- package/docs/examples.md +20 -0
- package/examples/cards.hsx +30 -0
- package/examples/collections.hsx +28 -0
- package/examples/escrow.hsx +22 -0
- package/examples/financing.hsx +24 -0
- package/examples/insurance.hsx +26 -0
- package/examples/lending.hsx +35 -0
- package/examples/library.hsx +2 -1
- package/examples/marketplace.hsx +26 -0
- package/examples/money.hsx +17 -0
- package/examples/reporting.hsx +25 -0
- package/examples/savings.hsx +19 -0
- package/examples/serviced.hsx +24 -0
- package/examples/travel.hsx +26 -0
- package/examples/wallet.hsx +21 -0
- package/package.json +14 -5
- package/src/compile.ts +2 -1
- package/src/examples-bundle.ts +18 -0
- package/src/examples.ts +9 -0
- package/src/headers.ts +19 -1
- package/src/keywords.ts +126 -0
- package/src/language.ts +629 -0
- package/src/lex.ts +26 -3
- package/src/std-bundle.ts +2 -2
- package/src/version.ts +1 -1
- package/std/cards.hsx +5 -0
- package/std/savings.hsx +2 -1
package/src/language.ts
ADDED
|
@@ -0,0 +1,629 @@
|
|
|
1
|
+
import type { Entry, Expr, Span } from "./ast.ts";
|
|
2
|
+
import { headerManifest } from "./headers.ts";
|
|
3
|
+
import { KEYWORD_HELP } from "./keywords.ts";
|
|
4
|
+
import { KEYWORDS, scan, type Token } from "./lex.ts";
|
|
5
|
+
import { parseProgram } from "./parse.ts";
|
|
6
|
+
import { bundledStandardLibrary, type StandardLibrary } from "./std-library.ts";
|
|
7
|
+
export type { StandardLibrary } from "./std-library.ts";
|
|
8
|
+
|
|
9
|
+
export type HsxTokenClass =
|
|
10
|
+
| "keyword"
|
|
11
|
+
| "header"
|
|
12
|
+
| "instrument"
|
|
13
|
+
| "action"
|
|
14
|
+
| "party"
|
|
15
|
+
| "role"
|
|
16
|
+
| "field"
|
|
17
|
+
| "parameter"
|
|
18
|
+
| "type"
|
|
19
|
+
| "state"
|
|
20
|
+
| "money"
|
|
21
|
+
| "number"
|
|
22
|
+
| "percent"
|
|
23
|
+
| "duration"
|
|
24
|
+
| "date"
|
|
25
|
+
| "string"
|
|
26
|
+
| "comment"
|
|
27
|
+
| "operator"
|
|
28
|
+
| "punctuation"
|
|
29
|
+
| "name";
|
|
30
|
+
export interface HsxHighlight {
|
|
31
|
+
start: number;
|
|
32
|
+
end: number;
|
|
33
|
+
class: HsxTokenClass;
|
|
34
|
+
}
|
|
35
|
+
export interface HsxHover {
|
|
36
|
+
span: Span;
|
|
37
|
+
kind: HsxTokenClass;
|
|
38
|
+
title: string;
|
|
39
|
+
signature?: string;
|
|
40
|
+
summary: string;
|
|
41
|
+
details?: { label: string; value: string }[];
|
|
42
|
+
header?: string;
|
|
43
|
+
}
|
|
44
|
+
type Help = Omit<HsxHover, "span">;
|
|
45
|
+
type Header = ReturnType<typeof headerManifest>["headers"][number];
|
|
46
|
+
const keywords = new Set<string>(KEYWORDS);
|
|
47
|
+
const types = new Set([
|
|
48
|
+
"money",
|
|
49
|
+
"account",
|
|
50
|
+
"ref",
|
|
51
|
+
"date",
|
|
52
|
+
"duration",
|
|
53
|
+
"text",
|
|
54
|
+
"integer",
|
|
55
|
+
"percent",
|
|
56
|
+
"boolean",
|
|
57
|
+
"enum",
|
|
58
|
+
"list",
|
|
59
|
+
"policy",
|
|
60
|
+
]);
|
|
61
|
+
// Cache by source bytes, not library identity: callers can edit their own headers.
|
|
62
|
+
const headerCache = new Map<
|
|
63
|
+
string,
|
|
64
|
+
{ source: string; value: Header | undefined }
|
|
65
|
+
>();
|
|
66
|
+
function header(name: string, library: StandardLibrary): Header | undefined {
|
|
67
|
+
try {
|
|
68
|
+
const source = library.source(name);
|
|
69
|
+
if (!source) return;
|
|
70
|
+
const cached = headerCache.get(name);
|
|
71
|
+
if (cached?.source === source) return cached.value;
|
|
72
|
+
let value: Header | undefined;
|
|
73
|
+
try {
|
|
74
|
+
value = headerManifest({ source: () => source }, [name]).headers[0];
|
|
75
|
+
} catch {
|
|
76
|
+
/* Half-written headers have no metadata yet. */
|
|
77
|
+
}
|
|
78
|
+
if (headerCache.size >= 64) headerCache.clear();
|
|
79
|
+
headerCache.set(name, { source, value });
|
|
80
|
+
return value;
|
|
81
|
+
} catch {
|
|
82
|
+
return;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
function instrumentHelp(
|
|
86
|
+
object: Header["objects"][number],
|
|
87
|
+
owner: string,
|
|
88
|
+
): Help {
|
|
89
|
+
return {
|
|
90
|
+
kind: "instrument",
|
|
91
|
+
title: object.qualifiedName,
|
|
92
|
+
header: owner,
|
|
93
|
+
signature: object.signature,
|
|
94
|
+
summary: object.summary,
|
|
95
|
+
details: [
|
|
96
|
+
...object.tunables.map((t) => ({
|
|
97
|
+
label: t.name,
|
|
98
|
+
value: `${t.type}${t.default === undefined ? "" : ` = ${t.default}`}${"minimum" in t ? `; bounds ${t.minimum} to ${t.maximum} in UDL units` : ""}`,
|
|
99
|
+
})),
|
|
100
|
+
...(object.states.length
|
|
101
|
+
? [{ label: "States", value: object.states.join(", ") }]
|
|
102
|
+
: []),
|
|
103
|
+
...object.actions.map((a) => ({
|
|
104
|
+
label: a.name,
|
|
105
|
+
value: `${a.summary} Actor: ${a.actor}`,
|
|
106
|
+
})),
|
|
107
|
+
],
|
|
108
|
+
};
|
|
109
|
+
}
|
|
110
|
+
interface Binding {
|
|
111
|
+
scope: Span;
|
|
112
|
+
help: Help;
|
|
113
|
+
declaration: number;
|
|
114
|
+
keysOnly?: boolean;
|
|
115
|
+
namespace?: string;
|
|
116
|
+
}
|
|
117
|
+
interface Analysis {
|
|
118
|
+
highlights: HsxHighlight[];
|
|
119
|
+
hovers: Map<number, HsxHover>;
|
|
120
|
+
}
|
|
121
|
+
function analyze(source: string, library: StandardLibrary): Analysis {
|
|
122
|
+
const all = scan(source).tokens.filter((t) => t.kind !== "eof");
|
|
123
|
+
const tokens = all.filter((t) => t.kind !== "comment");
|
|
124
|
+
const helps = new Map<number, Help>();
|
|
125
|
+
const classes = new Map<number, HsxTokenClass>();
|
|
126
|
+
const bindings = new Map<string, Binding[]>();
|
|
127
|
+
const imports = new Map<string, Header>();
|
|
128
|
+
const headerHelp = new Map<string, Help>();
|
|
129
|
+
const whole = { start: 0, end: source.length };
|
|
130
|
+
const text = (span: Span) => source.slice(span.start, span.end);
|
|
131
|
+
const mark = (token: Token | undefined, kind: HsxTokenClass, help?: Help) => {
|
|
132
|
+
if (!token || token.kind !== "name") return;
|
|
133
|
+
classes.set(token.span.start, kind);
|
|
134
|
+
if (help) helps.set(token.span.start, help);
|
|
135
|
+
};
|
|
136
|
+
const bind = (
|
|
137
|
+
name: string,
|
|
138
|
+
scope: Span,
|
|
139
|
+
declaration: number,
|
|
140
|
+
help: Help,
|
|
141
|
+
keysOnly = false,
|
|
142
|
+
namespace?: string,
|
|
143
|
+
) => {
|
|
144
|
+
const list = bindings.get(name) ?? [];
|
|
145
|
+
list.push({
|
|
146
|
+
scope,
|
|
147
|
+
declaration,
|
|
148
|
+
help,
|
|
149
|
+
keysOnly,
|
|
150
|
+
...(namespace ? { namespace } : {}),
|
|
151
|
+
});
|
|
152
|
+
bindings.set(name, list);
|
|
153
|
+
};
|
|
154
|
+
const atStart = new Map(tokens.map((t, i) => [t.span.start, i]));
|
|
155
|
+
const after = (span: Span) => tokens[(atStart.get(span.start) ?? -2) + 1];
|
|
156
|
+
const declared = (
|
|
157
|
+
name: string,
|
|
158
|
+
kind: HsxTokenClass,
|
|
159
|
+
scope: Span,
|
|
160
|
+
span: Span,
|
|
161
|
+
signature: string,
|
|
162
|
+
summary: string,
|
|
163
|
+
namespace?: string,
|
|
164
|
+
): Help => {
|
|
165
|
+
const help: Help = {
|
|
166
|
+
kind,
|
|
167
|
+
title: name,
|
|
168
|
+
signature,
|
|
169
|
+
summary,
|
|
170
|
+
details: [{ label: "Declared at", value: `UTF-16 offset ${span.start}` }],
|
|
171
|
+
};
|
|
172
|
+
bind(name, scope, span.start, help, false, namespace);
|
|
173
|
+
return help;
|
|
174
|
+
};
|
|
175
|
+
// These contexts also survive missing braces and unfinished declarations.
|
|
176
|
+
for (let i = 0; i < tokens.length; i++) {
|
|
177
|
+
const token = tokens[i]!;
|
|
178
|
+
const previous = tokens[i - 1]?.text;
|
|
179
|
+
if (previous === "use") {
|
|
180
|
+
const value = header(token.text, library);
|
|
181
|
+
if (value) imports.set(token.text, value);
|
|
182
|
+
mark(
|
|
183
|
+
token,
|
|
184
|
+
"header",
|
|
185
|
+
value
|
|
186
|
+
? {
|
|
187
|
+
kind: "header",
|
|
188
|
+
title: value.name,
|
|
189
|
+
header: value.name,
|
|
190
|
+
summary: value.objects
|
|
191
|
+
.map((o) => o.summary)
|
|
192
|
+
.slice(0, 2)
|
|
193
|
+
.join(" "),
|
|
194
|
+
details: value.objects.map((o) => ({
|
|
195
|
+
label: o.qualifiedName,
|
|
196
|
+
value: o.summary,
|
|
197
|
+
})),
|
|
198
|
+
}
|
|
199
|
+
: undefined,
|
|
200
|
+
);
|
|
201
|
+
const help = helps.get(token.span.start);
|
|
202
|
+
if (help) headerHelp.set(token.text, help);
|
|
203
|
+
}
|
|
204
|
+
if (
|
|
205
|
+
previous === "program" ||
|
|
206
|
+
previous === "object" ||
|
|
207
|
+
previous === "header"
|
|
208
|
+
)
|
|
209
|
+
mark(token, previous === "header" ? "header" : "name");
|
|
210
|
+
if (previous === "party" && tokens[i + 1]?.text === ":") {
|
|
211
|
+
mark(
|
|
212
|
+
token,
|
|
213
|
+
"party",
|
|
214
|
+
declared(
|
|
215
|
+
token.text,
|
|
216
|
+
"party",
|
|
217
|
+
whole,
|
|
218
|
+
token.span,
|
|
219
|
+
`${token.text}: ${tokens[i + 2]?.text ?? ""}`,
|
|
220
|
+
`Declared party ${token.text}.`,
|
|
221
|
+
),
|
|
222
|
+
);
|
|
223
|
+
}
|
|
224
|
+
if (previous === "role")
|
|
225
|
+
mark(
|
|
226
|
+
token,
|
|
227
|
+
"role",
|
|
228
|
+
declared(
|
|
229
|
+
token.text,
|
|
230
|
+
"role",
|
|
231
|
+
whole,
|
|
232
|
+
token.span,
|
|
233
|
+
token.text,
|
|
234
|
+
`Party role ${token.text}.`,
|
|
235
|
+
),
|
|
236
|
+
);
|
|
237
|
+
if (
|
|
238
|
+
previous === "instrument" ||
|
|
239
|
+
previous === "action" ||
|
|
240
|
+
previous === "attach" ||
|
|
241
|
+
previous === "expose" ||
|
|
242
|
+
previous === "hide" ||
|
|
243
|
+
previous === "as"
|
|
244
|
+
)
|
|
245
|
+
mark(
|
|
246
|
+
token,
|
|
247
|
+
previous === "instrument" || previous === "attach"
|
|
248
|
+
? "instrument"
|
|
249
|
+
: "action",
|
|
250
|
+
);
|
|
251
|
+
if (
|
|
252
|
+
["owner", "actor", "operator"].includes(token.text) &&
|
|
253
|
+
tokens[i + 1]?.text !== ":"
|
|
254
|
+
)
|
|
255
|
+
mark(token, "role", {
|
|
256
|
+
kind: "role",
|
|
257
|
+
title: token.text,
|
|
258
|
+
summary:
|
|
259
|
+
token.text === "owner"
|
|
260
|
+
? "The party that owns this object."
|
|
261
|
+
: token.text === "actor"
|
|
262
|
+
? "The authenticated party performing this action."
|
|
263
|
+
: "The party operating this product.",
|
|
264
|
+
});
|
|
265
|
+
}
|
|
266
|
+
const attachment = (target: string, scope: Span) => {
|
|
267
|
+
const [owner, name] = target.split(".");
|
|
268
|
+
const object = imports
|
|
269
|
+
.get(owner ?? "")
|
|
270
|
+
?.objects.find((o) => o.name === name);
|
|
271
|
+
if (!object) return;
|
|
272
|
+
for (const parameter of object.tunables)
|
|
273
|
+
bind(
|
|
274
|
+
parameter.name,
|
|
275
|
+
scope,
|
|
276
|
+
scope.start,
|
|
277
|
+
{
|
|
278
|
+
kind: "parameter",
|
|
279
|
+
title: parameter.name,
|
|
280
|
+
header: owner!,
|
|
281
|
+
summary: `Parameter of ${object.qualifiedName}.`,
|
|
282
|
+
signature: `${parameter.name}: ${parameter.type}${parameter.default === undefined ? "" : ` = ${parameter.default}`}`,
|
|
283
|
+
details:
|
|
284
|
+
"minimum" in parameter
|
|
285
|
+
? [
|
|
286
|
+
{
|
|
287
|
+
label: "Bounds in UDL units",
|
|
288
|
+
value: `${parameter.minimum} to ${parameter.maximum}`,
|
|
289
|
+
},
|
|
290
|
+
]
|
|
291
|
+
: [],
|
|
292
|
+
},
|
|
293
|
+
true,
|
|
294
|
+
);
|
|
295
|
+
for (const action of object.actions)
|
|
296
|
+
bind(action.name, scope, scope.start, {
|
|
297
|
+
kind: "action",
|
|
298
|
+
title: action.name,
|
|
299
|
+
header: owner!,
|
|
300
|
+
summary: action.summary,
|
|
301
|
+
details: [{ label: "Actor", value: action.actor }],
|
|
302
|
+
});
|
|
303
|
+
};
|
|
304
|
+
const ends = new Map<number, number>();
|
|
305
|
+
const stack: number[] = [];
|
|
306
|
+
for (let i = 0; i < tokens.length; i++) {
|
|
307
|
+
if (tokens[i]!.text === "{") stack.push(i);
|
|
308
|
+
if (tokens[i]!.text === "}") {
|
|
309
|
+
const start = stack.pop();
|
|
310
|
+
if (start !== undefined) ends.set(start, tokens[i]!.span.end);
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
let parentheses = 0;
|
|
314
|
+
for (let i = 0; i < tokens.length; i++) {
|
|
315
|
+
const token = tokens[i]!;
|
|
316
|
+
if (token.text === "(") parentheses++;
|
|
317
|
+
if (token.text === ")") parentheses = Math.max(0, parentheses - 1);
|
|
318
|
+
if (parentheses && tokens[i + 1]?.text === ":") mark(token, "parameter");
|
|
319
|
+
if (
|
|
320
|
+
token.text === "{" &&
|
|
321
|
+
tokens[i - 2]?.text === "." &&
|
|
322
|
+
tokens[i - 4]?.text === "="
|
|
323
|
+
) {
|
|
324
|
+
attachment(`${tokens[i - 3]!.text}.${tokens[i - 1]!.text}`, {
|
|
325
|
+
start: token.span.start,
|
|
326
|
+
end: ends.get(i) ?? source.length,
|
|
327
|
+
});
|
|
328
|
+
}
|
|
329
|
+
}
|
|
330
|
+
const entryHelp = (
|
|
331
|
+
entry: Entry,
|
|
332
|
+
kind: HsxTokenClass,
|
|
333
|
+
scope: Span,
|
|
334
|
+
namespace?: string,
|
|
335
|
+
) => {
|
|
336
|
+
const help = declared(
|
|
337
|
+
entry.key,
|
|
338
|
+
kind,
|
|
339
|
+
scope,
|
|
340
|
+
entry.span,
|
|
341
|
+
text(entry.span),
|
|
342
|
+
`${kind === "parameter" ? "Parameter" : "Field"} ${entry.key} is declared here.`,
|
|
343
|
+
namespace,
|
|
344
|
+
);
|
|
345
|
+
mark(tokens[atStart.get(entry.span.start) ?? -1], kind, help);
|
|
346
|
+
};
|
|
347
|
+
const walk = (expr: Expr, scope: Span, context = "") => {
|
|
348
|
+
if (expr.kind === "block") {
|
|
349
|
+
for (const entry of expr.entries) {
|
|
350
|
+
if (["fields", "input", "subject"].includes(context))
|
|
351
|
+
entryHelp(
|
|
352
|
+
entry,
|
|
353
|
+
"field",
|
|
354
|
+
scope,
|
|
355
|
+
context === "fields" ? "self" : context,
|
|
356
|
+
);
|
|
357
|
+
if (entry.key.startsWith("action ")) {
|
|
358
|
+
const name = entry.key.slice(7);
|
|
359
|
+
const slots = entry.value.kind === "block" ? entry.value.entries : [];
|
|
360
|
+
const summary = slots.find((e) => e.key === "summary")?.value;
|
|
361
|
+
const actor = slots.find((e) => e.key === "actor")?.value;
|
|
362
|
+
const help = declared(
|
|
363
|
+
name,
|
|
364
|
+
"action",
|
|
365
|
+
scope,
|
|
366
|
+
entry.span,
|
|
367
|
+
`action ${name}`,
|
|
368
|
+
summary?.kind === "text"
|
|
369
|
+
? summary.value
|
|
370
|
+
: `Action ${name} on this agreement.`,
|
|
371
|
+
);
|
|
372
|
+
if (actor)
|
|
373
|
+
help.details!.push({ label: "Actor", value: text(actor.span) });
|
|
374
|
+
mark(after(entry.span), "action", help);
|
|
375
|
+
walk(entry.value, entry.value.span);
|
|
376
|
+
} else if (
|
|
377
|
+
entry.key.startsWith("attach ") &&
|
|
378
|
+
entry.value.kind === "block"
|
|
379
|
+
) {
|
|
380
|
+
const [, name, , target] = entry.key.split(" ");
|
|
381
|
+
const help = declared(
|
|
382
|
+
name!,
|
|
383
|
+
"instrument",
|
|
384
|
+
scope,
|
|
385
|
+
entry.span,
|
|
386
|
+
`${name} = ${target}`,
|
|
387
|
+
`Attachment of ${target}.`,
|
|
388
|
+
);
|
|
389
|
+
mark(after(entry.span), "instrument", help);
|
|
390
|
+
walk(entry.value, entry.value.span);
|
|
391
|
+
} else {
|
|
392
|
+
if (
|
|
393
|
+
context === "lifecycle" &&
|
|
394
|
+
entry.key === "states" &&
|
|
395
|
+
entry.value.kind === "list"
|
|
396
|
+
) {
|
|
397
|
+
for (const state of entry.value.items)
|
|
398
|
+
if (state.kind === "name")
|
|
399
|
+
declared(
|
|
400
|
+
state.value,
|
|
401
|
+
"state",
|
|
402
|
+
scope,
|
|
403
|
+
state.span,
|
|
404
|
+
state.value,
|
|
405
|
+
`Lifecycle state ${state.value}.`,
|
|
406
|
+
);
|
|
407
|
+
}
|
|
408
|
+
walk(
|
|
409
|
+
entry.value,
|
|
410
|
+
context === "records" ? entry.value.span : scope,
|
|
411
|
+
entry.key,
|
|
412
|
+
);
|
|
413
|
+
}
|
|
414
|
+
}
|
|
415
|
+
} else if (expr.kind === "list")
|
|
416
|
+
for (const item of expr.items) walk(item, scope, context);
|
|
417
|
+
else if (expr.kind === "call")
|
|
418
|
+
for (const arg of expr.args) walk(arg, scope);
|
|
419
|
+
else if (expr.kind === "default") {
|
|
420
|
+
walk(expr.type, scope);
|
|
421
|
+
walk(expr.value, scope);
|
|
422
|
+
} else if (expr.kind === "capped") {
|
|
423
|
+
walk(expr.rate, scope);
|
|
424
|
+
walk(expr.cap, scope);
|
|
425
|
+
}
|
|
426
|
+
};
|
|
427
|
+
// The parser owns declarations and scopes. A parse failure leaves lexical context intact.
|
|
428
|
+
try {
|
|
429
|
+
const parsed = parseProgram(source);
|
|
430
|
+
for (const decl of parsed.program.decls) {
|
|
431
|
+
if (decl.kind === "instrument") {
|
|
432
|
+
const summary = decl.body.entries.find(
|
|
433
|
+
(e) => e.key === "summary",
|
|
434
|
+
)?.value;
|
|
435
|
+
const help = declared(
|
|
436
|
+
decl.name,
|
|
437
|
+
"instrument",
|
|
438
|
+
whole,
|
|
439
|
+
decl.span,
|
|
440
|
+
source
|
|
441
|
+
.slice(decl.span.start, decl.body.span.start)
|
|
442
|
+
.replace(/^instrument\s+/, "")
|
|
443
|
+
.trim(),
|
|
444
|
+
summary?.kind === "text"
|
|
445
|
+
? summary.value
|
|
446
|
+
: `Instrument ${decl.name} declared in this program.`,
|
|
447
|
+
);
|
|
448
|
+
mark(after(decl.span), "instrument", help);
|
|
449
|
+
for (const parameter of decl.parameters)
|
|
450
|
+
entryHelp(parameter, "parameter", decl.span);
|
|
451
|
+
walk(decl.body, decl.span);
|
|
452
|
+
} else if (decl.kind === "object") {
|
|
453
|
+
mark(
|
|
454
|
+
after(decl.span),
|
|
455
|
+
"name",
|
|
456
|
+
declared(
|
|
457
|
+
decl.name,
|
|
458
|
+
"name",
|
|
459
|
+
whole,
|
|
460
|
+
decl.span,
|
|
461
|
+
`object ${decl.name}`,
|
|
462
|
+
decl.title,
|
|
463
|
+
),
|
|
464
|
+
);
|
|
465
|
+
walk(decl.body, decl.span);
|
|
466
|
+
} else if (decl.kind === "assignment") {
|
|
467
|
+
declared(
|
|
468
|
+
decl.name,
|
|
469
|
+
"instrument",
|
|
470
|
+
whole,
|
|
471
|
+
decl.span,
|
|
472
|
+
`${decl.name} = ${decl.target}`,
|
|
473
|
+
`Instance of ${decl.target}.`,
|
|
474
|
+
);
|
|
475
|
+
walk(decl.body, decl.span);
|
|
476
|
+
}
|
|
477
|
+
}
|
|
478
|
+
} catch {
|
|
479
|
+
/* Arbitrary editor input must not interrupt typing. */
|
|
480
|
+
}
|
|
481
|
+
const hovers = new Map<number, HsxHover>();
|
|
482
|
+
for (let i = 0; i < tokens.length; i++) {
|
|
483
|
+
const token = tokens[i]!;
|
|
484
|
+
if (token.kind !== "name") continue;
|
|
485
|
+
const previous = tokens[i - 1]?.text;
|
|
486
|
+
const next = tokens[i + 1]?.text;
|
|
487
|
+
const owner = previous === "." ? tokens[i - 2]?.text : undefined;
|
|
488
|
+
const imported = owner ? imports.get(owner) : undefined;
|
|
489
|
+
const object = imported?.objects.find((o) => o.name === token.text);
|
|
490
|
+
if (object && owner)
|
|
491
|
+
mark(token, "instrument", instrumentHelp(object, owner));
|
|
492
|
+
else if (imports.has(token.text) && next === ".")
|
|
493
|
+
mark(token, "header", headerHelp.get(token.text));
|
|
494
|
+
else if (!helps.has(token.span.start)) {
|
|
495
|
+
const candidates = bindings
|
|
496
|
+
.get(token.text)
|
|
497
|
+
?.filter(
|
|
498
|
+
(b) =>
|
|
499
|
+
token.span.start >= b.scope.start &&
|
|
500
|
+
token.span.end <= b.scope.end &&
|
|
501
|
+
(!b.keysOnly || next === ":") &&
|
|
502
|
+
(!b.namespace ||
|
|
503
|
+
b.namespace === owner ||
|
|
504
|
+
b.declaration === token.span.start) &&
|
|
505
|
+
(b.help.kind !== "field" ||
|
|
506
|
+
previous === "." ||
|
|
507
|
+
b.declaration === token.span.start),
|
|
508
|
+
);
|
|
509
|
+
const binding = candidates?.sort(
|
|
510
|
+
(a, b) => a.scope.end - a.scope.start - (b.scope.end - b.scope.start),
|
|
511
|
+
)[0];
|
|
512
|
+
const isReference =
|
|
513
|
+
!keywords.has(token.text) ||
|
|
514
|
+
previous === "." ||
|
|
515
|
+
previous === "expose" ||
|
|
516
|
+
previous === "hide" ||
|
|
517
|
+
next === ":" ||
|
|
518
|
+
[":", "=", "fee", "moves", "from", "to", "(", ",", "["].includes(
|
|
519
|
+
previous ?? "",
|
|
520
|
+
) ||
|
|
521
|
+
binding?.declaration === token.span.start;
|
|
522
|
+
if (binding && isReference) mark(token, binding.help.kind, binding.help);
|
|
523
|
+
else if (
|
|
524
|
+
types.has(token.text) &&
|
|
525
|
+
(previous === ":" ||
|
|
526
|
+
previous === "<" ||
|
|
527
|
+
next === "(" ||
|
|
528
|
+
next === "?" ||
|
|
529
|
+
next === "of")
|
|
530
|
+
)
|
|
531
|
+
mark(token, "type");
|
|
532
|
+
else if (
|
|
533
|
+
previous === "." &&
|
|
534
|
+
["self", "input", "subject"].includes(owner ?? "")
|
|
535
|
+
)
|
|
536
|
+
mark(token, "field");
|
|
537
|
+
else if (next === ":" && !keywords.has(token.text)) mark(token, "field");
|
|
538
|
+
}
|
|
539
|
+
let help = helps.get(token.span.start);
|
|
540
|
+
if (!help && keywords.has(token.text) && !classes.has(token.span.start)) {
|
|
541
|
+
const [summary, compilesTo] = KEYWORD_HELP[
|
|
542
|
+
token.text as keyof typeof KEYWORD_HELP
|
|
543
|
+
] as readonly [string, string?];
|
|
544
|
+
help = {
|
|
545
|
+
kind: "keyword",
|
|
546
|
+
title: token.text,
|
|
547
|
+
summary,
|
|
548
|
+
...(compilesTo
|
|
549
|
+
? { details: [{ label: "Compiles to", value: compilesTo }] }
|
|
550
|
+
: {}),
|
|
551
|
+
};
|
|
552
|
+
}
|
|
553
|
+
if (help) hovers.set(token.span.start, { ...help, span: token.span });
|
|
554
|
+
}
|
|
555
|
+
const highlights = all.map((token): HsxHighlight => {
|
|
556
|
+
let kind = classes.get(token.span.start);
|
|
557
|
+
if (!kind) {
|
|
558
|
+
if (token.kind === "name")
|
|
559
|
+
kind = keywords.has(token.text) ? "keyword" : "name";
|
|
560
|
+
else if (token.kind === "punct")
|
|
561
|
+
kind = /^[=<>!|]/.test(token.text) ? "operator" : "punctuation";
|
|
562
|
+
else if (token.kind === "number")
|
|
563
|
+
kind = token.text.endsWith("%")
|
|
564
|
+
? "percent"
|
|
565
|
+
: /[a-z]$/.test(token.text)
|
|
566
|
+
? "duration"
|
|
567
|
+
: "number";
|
|
568
|
+
else kind = token.kind === "eof" ? "name" : token.kind;
|
|
569
|
+
}
|
|
570
|
+
return { ...token.span, class: kind };
|
|
571
|
+
});
|
|
572
|
+
for (let i = 0; i < all.length - 1; i++) {
|
|
573
|
+
if (
|
|
574
|
+
highlights[i]!.class === "number" &&
|
|
575
|
+
all[i + 1]!.kind === "name" &&
|
|
576
|
+
/^[A-Z]{3}$/.test(all[i + 1]!.text)
|
|
577
|
+
) {
|
|
578
|
+
highlights[i]!.class = "money";
|
|
579
|
+
highlights[i + 1]!.class = "money";
|
|
580
|
+
}
|
|
581
|
+
}
|
|
582
|
+
return { highlights, hovers };
|
|
583
|
+
}
|
|
584
|
+
// One editor document is retained. Hovering never reparses the same keystroke.
|
|
585
|
+
let last:
|
|
586
|
+
| { source: string; library: StandardLibrary; result: Analysis }
|
|
587
|
+
| undefined;
|
|
588
|
+
function analysis(source: string, library: StandardLibrary): Analysis {
|
|
589
|
+
// Custom libraries may change without changing identity; only the bundled library is immutable.
|
|
590
|
+
if (
|
|
591
|
+
library === bundledStandardLibrary &&
|
|
592
|
+
last?.source === source &&
|
|
593
|
+
last.library === library
|
|
594
|
+
)
|
|
595
|
+
return last.result;
|
|
596
|
+
const result = analyze(source, library);
|
|
597
|
+
if (library === bundledStandardLibrary) last = { source, library, result };
|
|
598
|
+
return result;
|
|
599
|
+
}
|
|
600
|
+
/** Total, sorted, non-overlapping UTF-16 spans, including incomplete source. */
|
|
601
|
+
export function highlight(
|
|
602
|
+
source: string,
|
|
603
|
+
library: StandardLibrary = bundledStandardLibrary,
|
|
604
|
+
): HsxHighlight[] {
|
|
605
|
+
return analysis(source, library).highlights.map((span) => ({ ...span }));
|
|
606
|
+
}
|
|
607
|
+
/** Offsets use half-open UTF-16 spans. Whitespace and out-of-range offsets return null. */
|
|
608
|
+
export function describe(
|
|
609
|
+
source: string,
|
|
610
|
+
offset: number,
|
|
611
|
+
library: StandardLibrary = bundledStandardLibrary,
|
|
612
|
+
): HsxHover | null {
|
|
613
|
+
if (!Number.isInteger(offset) || offset < 0 || offset >= source.length)
|
|
614
|
+
return null;
|
|
615
|
+
const result = analysis(source, library);
|
|
616
|
+
const span = result.highlights.find(
|
|
617
|
+
(s) => s.start <= offset && offset < s.end,
|
|
618
|
+
);
|
|
619
|
+
const hover = span && result.hovers.get(span.start);
|
|
620
|
+
return hover
|
|
621
|
+
? {
|
|
622
|
+
...hover,
|
|
623
|
+
span: { ...hover.span },
|
|
624
|
+
...(hover.details
|
|
625
|
+
? { details: hover.details.map((d) => ({ ...d })) }
|
|
626
|
+
: {}),
|
|
627
|
+
}
|
|
628
|
+
: null;
|
|
629
|
+
}
|
package/src/lex.ts
CHANGED
|
@@ -48,11 +48,19 @@ export const KEYWORDS = [
|
|
|
48
48
|
"columns",
|
|
49
49
|
] as const;
|
|
50
50
|
export interface Token {
|
|
51
|
-
kind: "name" | "number" | "string" | "date" | "punct" | "eof";
|
|
51
|
+
kind: "name" | "number" | "string" | "date" | "punct" | "comment" | "eof";
|
|
52
52
|
text: string;
|
|
53
53
|
span: Span;
|
|
54
54
|
}
|
|
55
|
-
export function lex(source: string)
|
|
55
|
+
export function lex(source: string) {
|
|
56
|
+
return scan(source, false);
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
/** The editor keeps comments and unfinished strings; compiler tokens stay unchanged. */
|
|
60
|
+
export function scan(
|
|
61
|
+
source: string,
|
|
62
|
+
editor = true,
|
|
63
|
+
): {
|
|
56
64
|
tokens: Token[];
|
|
57
65
|
diagnostics: Diagnostic[];
|
|
58
66
|
} {
|
|
@@ -65,6 +73,12 @@ export function lex(source: string): {
|
|
|
65
73
|
const whitespace = /^\s+|^\/\/[^\n]*/.exec(tail);
|
|
66
74
|
if (whitespace) {
|
|
67
75
|
index += whitespace[0].length;
|
|
76
|
+
if (editor && whitespace[0].startsWith("//"))
|
|
77
|
+
tokens.push({
|
|
78
|
+
kind: "comment",
|
|
79
|
+
text: whitespace[0],
|
|
80
|
+
span: { start, end: index },
|
|
81
|
+
});
|
|
68
82
|
continue;
|
|
69
83
|
}
|
|
70
84
|
const date =
|
|
@@ -95,7 +109,16 @@ export function lex(source: string): {
|
|
|
95
109
|
fix: "close the string and use JSON escapes",
|
|
96
110
|
span: { start, end: start + 1 },
|
|
97
111
|
});
|
|
98
|
-
|
|
112
|
+
if (editor) {
|
|
113
|
+
const unfinished =
|
|
114
|
+
/^"(?:[^"\\\n]|\\[^\n]?)*(?:"|(?=\n)|$)/.exec(tail)?.[0] ?? '"';
|
|
115
|
+
index += unfinished.length;
|
|
116
|
+
tokens.push({
|
|
117
|
+
kind: "string",
|
|
118
|
+
text: unfinished,
|
|
119
|
+
span: { start, end: index },
|
|
120
|
+
});
|
|
121
|
+
} else index++;
|
|
99
122
|
continue;
|
|
100
123
|
}
|
|
101
124
|
kind = "string";
|