@hyperscale0/hsx 2.4.1 → 3.0.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 +2 -408
- package/README.md +3 -92
- package/dist/src/ast.d.ts +99 -310
- package/dist/src/ast.d.ts.map +1 -1
- package/dist/src/ast.js +16 -69
- package/dist/src/ast.js.map +1 -1
- package/dist/src/cli.d.ts +6 -19
- package/dist/src/cli.d.ts.map +1 -1
- package/dist/src/cli.js +76 -315
- package/dist/src/cli.js.map +1 -1
- package/dist/src/compile.d.ts +23 -73
- package/dist/src/compile.d.ts.map +1 -1
- package/dist/src/compile.js +1113 -148
- package/dist/src/compile.js.map +1 -1
- package/dist/src/cost.d.ts +8 -77
- package/dist/src/cost.d.ts.map +1 -1
- package/dist/src/cost.js +13 -422
- package/dist/src/cost.js.map +1 -1
- package/dist/src/format.d.ts +8 -7
- package/dist/src/format.d.ts.map +1 -1
- package/dist/src/format.js +9 -175
- package/dist/src/format.js.map +1 -1
- package/dist/src/headers.d.ts +35 -0
- package/dist/src/headers.d.ts.map +1 -0
- package/dist/src/headers.js +108 -0
- package/dist/src/headers.js.map +1 -0
- package/dist/src/index.d.ts +6 -12
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +4 -9
- package/dist/src/index.js.map +1 -1
- package/dist/src/lex.d.ts +8 -28
- package/dist/src/lex.d.ts.map +1 -1
- package/dist/src/lex.js +88 -146
- package/dist/src/lex.js.map +1 -1
- package/dist/src/parse.d.ts +4 -17
- package/dist/src/parse.d.ts.map +1 -1
- package/dist/src/parse.js +402 -1040
- package/dist/src/parse.js.map +1 -1
- package/dist/src/std-bundle.d.ts.map +1 -1
- package/dist/src/std-bundle.js +12 -20
- package/dist/src/std-bundle.js.map +1 -1
- package/dist/src/std-library.d.ts +1 -1
- package/dist/src/std-library.d.ts.map +1 -1
- package/dist/src/std-library.js +1 -5
- package/dist/src/std-library.js.map +1 -1
- package/dist/src/tunables.d.ts +7 -0
- package/dist/src/tunables.d.ts.map +1 -0
- package/dist/src/tunables.js +26 -0
- package/dist/src/tunables.js.map +1 -0
- package/dist/src/version.d.ts +2 -4
- package/dist/src/version.d.ts.map +1 -1
- package/dist/src/version.js +2 -4
- package/dist/src/version.js.map +1 -1
- package/docs/README.md +179 -41
- package/docs/headers.md +44 -0
- package/examples/cost-table.json +99 -751
- package/examples/library.hsx +59 -0
- package/package.json +9 -17
- package/src/ast.ts +82 -441
- package/src/cli.ts +77 -362
- package/src/compile.ts +1535 -247
- package/src/cost.ts +28 -671
- package/src/format.ts +12 -256
- package/src/headers.ts +126 -0
- package/src/index.ts +7 -39
- package/src/lex.ts +99 -195
- package/src/parse.ts +403 -1209
- package/src/std-bundle.ts +12 -20
- package/src/std-library.ts +2 -7
- package/src/tunables.ts +31 -0
- package/src/version.ts +2 -5
- package/std/approvals.hsx +17 -0
- package/std/cards.hsx +63 -0
- package/std/collections.hsx +31 -0
- package/std/escrow.hsx +43 -0
- package/std/financing.hsx +372 -0
- package/std/insurance.hsx +59 -0
- package/std/lending.hsx +115 -0
- package/std/marketplace.hsx +24 -0
- package/std/money.hsx +195 -0
- package/std/savings.hsx +44 -0
- package/std/travel.hsx +98 -0
- package/std/wallet.hsx +41 -0
- package/dist/src/diagnostics.d.ts +0 -13
- package/dist/src/diagnostics.d.ts.map +0 -1
- package/dist/src/diagnostics.js +0 -587
- package/dist/src/diagnostics.js.map +0 -1
- package/dist/src/emit.d.ts +0 -51
- package/dist/src/emit.d.ts.map +0 -1
- package/dist/src/emit.js +0 -192
- package/dist/src/emit.js.map +0 -1
- package/dist/src/entry-overrides.d.ts +0 -58
- package/dist/src/entry-overrides.d.ts.map +0 -1
- package/dist/src/entry-overrides.js +0 -284
- package/dist/src/entry-overrides.js.map +0 -1
- package/dist/src/ir.d.ts +0 -73
- package/dist/src/ir.d.ts.map +0 -1
- package/dist/src/ir.js +0 -15
- package/dist/src/ir.js.map +0 -1
- package/dist/src/limits.d.ts +0 -23
- package/dist/src/limits.d.ts.map +0 -1
- package/dist/src/limits.js +0 -23
- package/dist/src/limits.js.map +0 -1
- package/dist/src/lsp/server.d.ts +0 -32
- package/dist/src/lsp/server.d.ts.map +0 -1
- package/dist/src/lsp/server.js +0 -391
- package/dist/src/lsp/server.js.map +0 -1
- package/dist/src/modules.d.ts +0 -38
- package/dist/src/modules.d.ts.map +0 -1
- package/dist/src/modules.js +0 -372
- package/dist/src/modules.js.map +0 -1
- package/dist/src/typecheck.d.ts +0 -8
- package/dist/src/typecheck.d.ts.map +0 -1
- package/dist/src/typecheck.js +0 -4160
- package/dist/src/typecheck.js.map +0 -1
- package/docs/guide/01-first-program.md +0 -24
- package/docs/guide/02-money.md +0 -25
- package/docs/guide/03-instruments.md +0 -93
- package/docs/guide/04-lifecycles.md +0 -40
- package/docs/guide/05-fees-and-splits.md +0 -45
- package/docs/guide/06-schedules.md +0 -26
- package/docs/guide/07-composition.md +0 -52
- package/docs/guide/08-writing-a-module.md +0 -85
- package/docs/guide/09-cost.md +0 -24
- package/docs/guide/10-diagnostics.md +0 -27
- package/docs/llms-full.txt +0 -3684
- package/docs/llms.txt +0 -44
- package/docs/piece-plans.md +0 -120
- package/docs/playground.md +0 -55
- package/docs/reference/cli.md +0 -36
- package/docs/reference/diagnostics.md +0 -901
- package/docs/reference/grammar.md +0 -38
- package/docs/reference/std/advance.md +0 -112
- package/docs/reference/std/cancellable_booking.md +0 -159
- package/docs/reference/std/captured_payment.md +0 -115
- package/docs/reference/std/conditional_disbursement.md +0 -101
- package/docs/reference/std/credit_facility.md +0 -108
- package/docs/reference/std/held_payment.md +0 -173
- package/docs/reference/std/instant_transfer.md +0 -97
- package/docs/reference/std/metered.md +0 -89
- package/docs/reference/std/pooled_split.md +0 -95
- package/docs/reference/std/premium_forward.md +0 -119
- package/docs/reference/std/reconciled_payout.md +0 -103
- package/docs/reference/std/rotating_pool.md +0 -130
- package/docs/reference/std/scheduled.md +0 -136
- package/docs/reference/std/security_deposit.md +0 -138
- package/docs/reference/std/settlement_batch.md +0 -123
- package/docs/reference/std/swap.md +0 -133
- package/docs/reference/std/threshold_pool.md +0 -138
- package/docs/reference/std/weighted_distribution.md +0 -135
- package/docs/reference/types.md +0 -61
- package/docs/reference/udl-output.md +0 -13
- package/examples/01-first-program/README.md +0 -45
- package/examples/01-first-program/tip-jar.hsx +0 -17
- package/examples/02-imports-and-modules/README.md +0 -96
- package/examples/02-imports-and-modules/photo-booth.hsx +0 -37
- package/examples/03-diagnostics/README.md +0 -68
- package/examples/03-diagnostics/corner-shop-fixed.hsx +0 -22
- package/examples/03-diagnostics/corner-shop.hsx +0 -19
- package/examples/04-complete-product/README.md +0 -84
- package/examples/04-complete-product/study-hall.hsx +0 -67
- package/examples/05-authored-instrument/README.md +0 -5
- package/examples/05-authored-instrument/payment.hsx +0 -37
- package/examples/05-watch-club/README.md +0 -6
- package/examples/05-watch-club/watch-club.hsx +0 -123
- package/examples/README.md +0 -48
- package/examples/advance/README.md +0 -3
- package/examples/advance/advance.hsx +0 -13
- package/examples/advance/advance.udl +0 -367
- package/examples/cancellable_booking/README.md +0 -3
- package/examples/cancellable_booking/cancellable_booking.hsx +0 -14
- package/examples/cancellable_booking/cancellable_booking.udl +0 -413
- package/examples/captured_payment/README.md +0 -3
- package/examples/captured_payment/captured_payment.hsx +0 -17
- package/examples/captured_payment/captured_payment.udl +0 -686
- package/examples/conditional_disbursement/README.md +0 -3
- package/examples/conditional_disbursement/conditional_disbursement.hsx +0 -15
- package/examples/conditional_disbursement/conditional_disbursement.udl +0 -418
- package/examples/credit_facility/README.md +0 -3
- package/examples/credit_facility/credit_facility.hsx +0 -24
- package/examples/credit_facility/credit_facility.udl +0 -1396
- package/examples/held_payment/README.md +0 -3
- package/examples/held_payment/held_payment.hsx +0 -13
- package/examples/held_payment/held_payment.udl +0 -569
- package/examples/instant_transfer/README.md +0 -3
- package/examples/instant_transfer/instant_transfer.hsx +0 -16
- package/examples/instant_transfer/instant_transfer.udl +0 -376
- package/examples/metered/README.md +0 -3
- package/examples/metered/metered.hsx +0 -13
- package/examples/metered/metered.udl +0 -253
- package/examples/pooled_split/README.md +0 -3
- package/examples/pooled_split/pooled_split.hsx +0 -15
- package/examples/pooled_split/pooled_split.udl +0 -432
- package/examples/premium_forward/README.md +0 -3
- package/examples/premium_forward/premium_forward.hsx +0 -19
- package/examples/premium_forward/premium_forward.udl +0 -604
- package/examples/reconciled_payout/README.md +0 -3
- package/examples/reconciled_payout/reconciled_payout.hsx +0 -13
- package/examples/reconciled_payout/reconciled_payout.udl +0 -312
- package/examples/rotating_pool/README.md +0 -3
- package/examples/rotating_pool/rotating_pool.hsx +0 -18
- package/examples/rotating_pool/rotating_pool.udl +0 -4370
- package/examples/scheduled/README.md +0 -3
- package/examples/scheduled/scheduled.hsx +0 -12
- package/examples/scheduled/scheduled.udl +0 -355
- package/examples/security_deposit/README.md +0 -3
- package/examples/security_deposit/security_deposit.hsx +0 -21
- package/examples/security_deposit/security_deposit.udl +0 -320
- package/examples/settlement_batch/README.md +0 -3
- package/examples/settlement_batch/settlement_batch.hsx +0 -19
- package/examples/settlement_batch/settlement_batch.udl +0 -757
- package/examples/swap/README.md +0 -3
- package/examples/swap/swap.hsx +0 -19
- package/examples/swap/swap.udl +0 -892
- package/examples/threshold_pool/README.md +0 -3
- package/examples/threshold_pool/threshold_pool.hsx +0 -16
- package/examples/threshold_pool/threshold_pool.udl +0 -680
- package/examples/weighted_distribution/README.md +0 -3
- package/examples/weighted_distribution/weighted_distribution.hsx +0 -20
- package/examples/weighted_distribution/weighted_distribution.udl +0 -348
- package/skills/hsx/SKILL.md +0 -449
- package/src/diagnostics.ts +0 -620
- package/src/emit.ts +0 -282
- package/src/entry-overrides.ts +0 -428
- package/src/ir.ts +0 -113
- package/src/limits.ts +0 -22
- package/src/lsp/server.ts +0 -460
- package/src/modules.ts +0 -452
- package/src/typecheck.ts +0 -5515
- package/std/SEMANTICS.md +0 -44
- package/std/money_flows/advance.hsx +0 -235
- package/std/money_flows/cancellable_booking.hsx +0 -402
- package/std/money_flows/captured_payment.hsx +0 -220
- package/std/money_flows/conditional_disbursement.hsx +0 -226
- package/std/money_flows/credit_facility.hsx +0 -214
- package/std/money_flows/held_payment.hsx +0 -812
- package/std/money_flows/index.hsx +0 -4
- package/std/money_flows/instant_transfer.hsx +0 -231
- package/std/money_flows/metered.hsx +0 -104
- package/std/money_flows/pooled_split.hsx +0 -109
- package/std/money_flows/premium_forward.hsx +0 -307
- package/std/money_flows/reconciled_payout.hsx +0 -119
- package/std/money_flows/rotating_pool.hsx +0 -305
- package/std/money_flows/scheduled.hsx +0 -599
- package/std/money_flows/security_deposit.hsx +0 -248
- package/std/money_flows/settlement_batch.hsx +0 -173
- package/std/money_flows/swap.hsx +0 -1192
- package/std/money_flows/threshold_pool.hsx +0 -307
- package/std/money_flows/weighted_distribution.hsx +0 -237
package/src/format.ts
CHANGED
|
@@ -1,261 +1,17 @@
|
|
|
1
|
-
import type { BlockExpr, Decl, Diagnostic, Entry, Expr, Span } from "./ast.ts";
|
|
2
|
-
import { lex, type CommentTrivia } from "./lex.ts";
|
|
3
1
|
import { parseProgram } from "./parse.ts";
|
|
4
|
-
|
|
5
|
-
export
|
|
6
|
-
| { readonly formatted: string; readonly ok: true }
|
|
7
|
-
| { readonly diagnostics: readonly Diagnostic[]; readonly ok: false };
|
|
8
|
-
|
|
9
|
-
export function format(source: string): FormatResult {
|
|
2
|
+
/** Preserve authored comments and literals; normalize line endings and trailing whitespace. */
|
|
3
|
+
export function format(source: string) {
|
|
10
4
|
const parsed = parseProgram(source);
|
|
11
|
-
if (parsed.diagnostics.length
|
|
12
|
-
return { diagnostics: parsed.diagnostics
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
const context: FormatContext = { comments: lex(source).comments, source };
|
|
5
|
+
if (parsed.diagnostics.length)
|
|
6
|
+
return { ok: false as const, diagnostics: parsed.diagnostics };
|
|
16
7
|
return {
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
8
|
+
ok: true as const,
|
|
9
|
+
formatted:
|
|
10
|
+
source
|
|
11
|
+
.replace(/\r\n?/g, "\n")
|
|
12
|
+
.split("\n")
|
|
13
|
+
.map((line) => line.trimEnd())
|
|
14
|
+
.join("\n")
|
|
15
|
+
.trimEnd() + "\n",
|
|
25
16
|
};
|
|
26
17
|
}
|
|
27
|
-
|
|
28
|
-
interface FormatContext {
|
|
29
|
-
readonly comments: readonly CommentTrivia[];
|
|
30
|
-
readonly source: string;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
function renderDecl(decl: Decl, context: FormatContext): string {
|
|
34
|
-
switch (decl.kind) {
|
|
35
|
-
case "module":
|
|
36
|
-
return `module ${renderExpr(decl.name, 0, context)};`;
|
|
37
|
-
case "program":
|
|
38
|
-
return `program ${decl.name.name}${decl.title ? ` ${renderExpr(decl.title, 0, context)}` : ""};`;
|
|
39
|
-
case "use":
|
|
40
|
-
return `use ${decl.instrument.name};`;
|
|
41
|
-
case "expose":
|
|
42
|
-
return `expose ${decl.instrument.name}.${decl.action.name} as ${decl.publicName.name};`;
|
|
43
|
-
case "import":
|
|
44
|
-
return `import { ${decl.names.map((name) => name.name).join(", ")} } from ${renderExpr(decl.from, 0, context)};`;
|
|
45
|
-
case "party":
|
|
46
|
-
return renderBlockDecl(
|
|
47
|
-
`party ${decl.name.name}: ${decl.partyKind.name}`,
|
|
48
|
-
decl.attrs,
|
|
49
|
-
context,
|
|
50
|
-
);
|
|
51
|
-
case "asset":
|
|
52
|
-
return renderBlockDecl(
|
|
53
|
-
`asset ${decl.name.name}: ${decl.assetKind.name}`,
|
|
54
|
-
decl.attrs,
|
|
55
|
-
context,
|
|
56
|
-
);
|
|
57
|
-
case "subject":
|
|
58
|
-
return `subject ${decl.name.name} ${renderBlock(decl.body, 0, context)}`;
|
|
59
|
-
case "port":
|
|
60
|
-
return `port ${decl.name.name} ${renderBlock(decl.body, 0, context)}`;
|
|
61
|
-
case "instrument": {
|
|
62
|
-
const exported = decl.exported ? "export " : "";
|
|
63
|
-
const typeParameters =
|
|
64
|
-
decl.typeParameters.length > 0
|
|
65
|
-
? `<${decl.typeParameters.map((parameter) => parameter.name.name).join(", ")}>`
|
|
66
|
-
: "";
|
|
67
|
-
const parameters = decl.hasParameterList
|
|
68
|
-
? `(${decl.parameters
|
|
69
|
-
.map(
|
|
70
|
-
(parameter) =>
|
|
71
|
-
`${parameter.name.name}: ${renderExpr(parameter.type, 0)}`,
|
|
72
|
-
)
|
|
73
|
-
.join(", ")})`
|
|
74
|
-
: "";
|
|
75
|
-
return `${exported}instrument ${decl.name.name}${typeParameters}${parameters} ${renderBlock(decl.body, 0, context)}`;
|
|
76
|
-
}
|
|
77
|
-
case "instrument_apply":
|
|
78
|
-
return `${decl.exported ? "export " : ""}instrument ${decl.name.name} = ${renderExpr(decl.application, 0, context)}${decl.metadata ? ` ${renderBlock(decl.metadata, 0, context)}` : ";"}`;
|
|
79
|
-
case "type":
|
|
80
|
-
return `${decl.exported ? "export " : ""}type ${decl.name.name} = ${renderExpr(decl.value, 0, context)};`;
|
|
81
|
-
case "const": {
|
|
82
|
-
const type = decl.type ? `: ${renderExpr(decl.type, 0, context)}` : "";
|
|
83
|
-
return `${decl.exported ? "export " : ""}const ${decl.name.name}${type} = ${renderExpr(decl.value, 0, context)};`;
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
function renderBlockDecl(
|
|
89
|
-
header: string,
|
|
90
|
-
body: BlockExpr | undefined,
|
|
91
|
-
context: FormatContext,
|
|
92
|
-
): string {
|
|
93
|
-
return body ? `${header} ${renderBlock(body, 0, context)}` : `${header};`;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
function renderBlock(
|
|
97
|
-
block: BlockExpr,
|
|
98
|
-
indent: number,
|
|
99
|
-
context: FormatContext,
|
|
100
|
-
): string {
|
|
101
|
-
const rows = renderSequence(
|
|
102
|
-
block.entries,
|
|
103
|
-
block.span,
|
|
104
|
-
indent + 1,
|
|
105
|
-
(entry) =>
|
|
106
|
-
`${spaces(indent + 1)}${renderEntry(entry, indent + 1, context)}`,
|
|
107
|
-
context,
|
|
108
|
-
);
|
|
109
|
-
if (rows.length === 0) return "{}";
|
|
110
|
-
return `{\n${rows}\n${spaces(indent)}}`;
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
function renderEntry(
|
|
114
|
-
entry: Entry,
|
|
115
|
-
indent: number,
|
|
116
|
-
context: FormatContext,
|
|
117
|
-
): string {
|
|
118
|
-
const key = entry.key.name;
|
|
119
|
-
const identifierKey =
|
|
120
|
-
/^[A-Za-z][A-Za-z0-9_]*(?:\[[A-Za-z][A-Za-z0-9_]*\][A-Za-z0-9_]*)?$/.test(
|
|
121
|
-
key,
|
|
122
|
-
);
|
|
123
|
-
const renderedKey =
|
|
124
|
-
!entry.key.quoted && identifierKey ? key : JSON.stringify(key);
|
|
125
|
-
if (entry.iteration && entry.value.kind === "block") {
|
|
126
|
-
return `for ${entry.iteration.binding.name} in ${renderExpr(entry.iteration.bound, indent, context)} ${renderBlock(entry.value, indent, context)}`;
|
|
127
|
-
}
|
|
128
|
-
if (key === "action" && entry.value.kind === "block") {
|
|
129
|
-
return `action ${entry.qualifiers[0]?.name ?? ""} ${renderBlock(entry.value, indent, context)}`;
|
|
130
|
-
}
|
|
131
|
-
if (key === "states" && entry.value.kind === "list") {
|
|
132
|
-
return `states ${entry.value.items.map((item) => renderExpr(item, indent, context)).join(" ")};`;
|
|
133
|
-
}
|
|
134
|
-
if (key === "initial") {
|
|
135
|
-
return `initial ${renderExpr(entry.value, indent, context)};`;
|
|
136
|
-
}
|
|
137
|
-
if (key === "parked") {
|
|
138
|
-
return `parked ${entry.qualifiers[0]?.name ?? ""} reason ${renderExpr(entry.value, indent, context)};`;
|
|
139
|
-
}
|
|
140
|
-
if (key === "on") {
|
|
141
|
-
const [action, ...states] = entry.qualifiers;
|
|
142
|
-
return `on ${action?.name ?? ""}: ${states.map((state) => state.name).join(" | ")} -> ${renderExpr(entry.value, indent, context)};`;
|
|
143
|
-
}
|
|
144
|
-
if (key === "notify") {
|
|
145
|
-
return `notify ${entry.qualifiers[0]?.name ?? ""} via ${entry.qualifiers[1]?.name ?? ""};`;
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
const qualifier = renderQualifier(key, entry);
|
|
149
|
-
if (entry.value.kind === "block") {
|
|
150
|
-
return `${renderedKey}${qualifier} ${renderBlock(entry.value, indent, context)}`;
|
|
151
|
-
}
|
|
152
|
-
return `${renderedKey}${qualifier}: ${renderExpr(entry.value, indent, context)};`;
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
function renderQualifier(key: string, entry: Entry): string {
|
|
156
|
-
if (entry.qualifiers.length === 0) return "";
|
|
157
|
-
const names = entry.qualifiers.map((qualifier) => qualifier.name);
|
|
158
|
-
return key === "requires" || key === "computes"
|
|
159
|
-
? ` ${names.join(" ")}`
|
|
160
|
-
: `(${names.join(", ")})`;
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
function renderExpr(
|
|
164
|
-
expr: Expr,
|
|
165
|
-
indent: number,
|
|
166
|
-
context?: FormatContext,
|
|
167
|
-
): string {
|
|
168
|
-
switch (expr.kind) {
|
|
169
|
-
case "ident":
|
|
170
|
-
return expr.name;
|
|
171
|
-
case "string":
|
|
172
|
-
return `"${expr.value}"`;
|
|
173
|
-
case "number":
|
|
174
|
-
return expr.raw;
|
|
175
|
-
case "boolean":
|
|
176
|
-
return String(expr.value);
|
|
177
|
-
case "money":
|
|
178
|
-
return `${expr.currency.name} ${expr.raw}`;
|
|
179
|
-
case "percent":
|
|
180
|
-
return `${expr.raw}%`;
|
|
181
|
-
case "path":
|
|
182
|
-
return expr.parts.map((part) => part.name).join(".");
|
|
183
|
-
case "settlement_ref":
|
|
184
|
-
return `${expr.owner.name}.${expr.member.name}`;
|
|
185
|
-
case "type_apply":
|
|
186
|
-
return `${expr.callee.name}<${expr.args.map((arg) => renderExpr(arg, indent, context)).join(", ")}>`;
|
|
187
|
-
case "call":
|
|
188
|
-
return `${expr.callee.name}(${expr.args.map((arg) => renderExpr(arg, indent, context)).join(", ")})`;
|
|
189
|
-
case "apply": {
|
|
190
|
-
const typeArgs =
|
|
191
|
-
expr.typeArgs.length > 0
|
|
192
|
-
? `<${expr.typeArgs.map((arg) => renderExpr(arg, indent, context)).join(", ")}>`
|
|
193
|
-
: "";
|
|
194
|
-
return `${renderExpr(expr.callee, indent, context)}${typeArgs}(${expr.args
|
|
195
|
-
.map((arg) => renderExpr(arg, indent, context))
|
|
196
|
-
.join(", ")})`;
|
|
197
|
-
}
|
|
198
|
-
case "binding":
|
|
199
|
-
return `${expr.name.name}: ${renderExpr(expr.type, indent, context)}`;
|
|
200
|
-
case "list":
|
|
201
|
-
return `[${expr.items.map((item) => renderExpr(item, indent, context)).join(", ")}]`;
|
|
202
|
-
case "block":
|
|
203
|
-
return renderBlock(expr, indent, context as FormatContext);
|
|
204
|
-
case "decided_amount":
|
|
205
|
-
return `decided ${renderBlock(expr.body, indent, context as FormatContext)}`;
|
|
206
|
-
case "port_ref": {
|
|
207
|
-
const within = expr.within ? ` within ${expr.within.name}` : "";
|
|
208
|
-
const deadline = expr.deadline ? ` | at(${expr.deadline.name})` : "";
|
|
209
|
-
return `port ${expr.name.name}${within}${deadline}`;
|
|
210
|
-
}
|
|
211
|
-
}
|
|
212
|
-
}
|
|
213
|
-
|
|
214
|
-
function renderSequence<T extends { readonly span: Span }>(
|
|
215
|
-
children: readonly T[],
|
|
216
|
-
container: Span,
|
|
217
|
-
indent: number,
|
|
218
|
-
render: (child: T) => string,
|
|
219
|
-
context: FormatContext,
|
|
220
|
-
): string {
|
|
221
|
-
const rows: string[] = [];
|
|
222
|
-
let cursor = container.start;
|
|
223
|
-
for (const child of children) {
|
|
224
|
-
appendComments(rows, cursor, child.span.start, indent, context);
|
|
225
|
-
rows.push(render(child));
|
|
226
|
-
cursor = child.span.end;
|
|
227
|
-
}
|
|
228
|
-
appendComments(rows, cursor, container.end, indent, context);
|
|
229
|
-
return rows.join("\n");
|
|
230
|
-
}
|
|
231
|
-
|
|
232
|
-
function appendComments(
|
|
233
|
-
rows: string[],
|
|
234
|
-
start: number,
|
|
235
|
-
end: number,
|
|
236
|
-
indent: number,
|
|
237
|
-
context: FormatContext,
|
|
238
|
-
): void {
|
|
239
|
-
for (const comment of context.comments) {
|
|
240
|
-
if (comment.span.start < start || comment.span.end > end) continue;
|
|
241
|
-
const trailing =
|
|
242
|
-
rows.length > 0 &&
|
|
243
|
-
!context.source.slice(start, comment.span.start).includes("\n");
|
|
244
|
-
if (trailing) {
|
|
245
|
-
const last = rows.pop() as string;
|
|
246
|
-
const newline = last.lastIndexOf("\n");
|
|
247
|
-
rows.push(
|
|
248
|
-
newline < 0
|
|
249
|
-
? `${last} ${comment.text}`
|
|
250
|
-
: `${last.slice(0, newline + 1)}${last.slice(newline + 1)} ${comment.text}`,
|
|
251
|
-
);
|
|
252
|
-
} else {
|
|
253
|
-
rows.push(`${spaces(indent)}${comment.text}`);
|
|
254
|
-
}
|
|
255
|
-
start = comment.span.end;
|
|
256
|
-
}
|
|
257
|
-
}
|
|
258
|
-
|
|
259
|
-
function spaces(indent: number): string {
|
|
260
|
-
return " ".repeat(indent);
|
|
261
|
-
}
|
package/src/headers.ts
ADDED
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
import { tunableBounds } from "./tunables.ts";
|
|
2
|
+
import { parseProgram } from "./parse.ts";
|
|
3
|
+
import { bundledStandardLibrary, type StandardLibrary } from "./std-library.ts";
|
|
4
|
+
import type { BlockExpr, Expr } from "./ast.ts";
|
|
5
|
+
|
|
6
|
+
export const HEADER_NAMES = [
|
|
7
|
+
"money",
|
|
8
|
+
"marketplace",
|
|
9
|
+
"escrow",
|
|
10
|
+
"wallet",
|
|
11
|
+
"financing",
|
|
12
|
+
"lending",
|
|
13
|
+
"insurance",
|
|
14
|
+
"approvals",
|
|
15
|
+
"collections",
|
|
16
|
+
"travel",
|
|
17
|
+
"cards",
|
|
18
|
+
"savings",
|
|
19
|
+
] as const;
|
|
20
|
+
|
|
21
|
+
/** The compiler frontend owns header metadata used by docs and catalogue consumers. */
|
|
22
|
+
export function headerManifest(
|
|
23
|
+
library: StandardLibrary = bundledStandardLibrary,
|
|
24
|
+
) {
|
|
25
|
+
return {
|
|
26
|
+
version: 3,
|
|
27
|
+
headers: HEADER_NAMES.map((name) => {
|
|
28
|
+
const source = library.source(name);
|
|
29
|
+
if (!source) throw new Error(`Missing standard header ${name}`);
|
|
30
|
+
const parsed = parseProgram(source);
|
|
31
|
+
if (parsed.diagnostics.length)
|
|
32
|
+
throw new Error(`${name}: ${parsed.diagnostics[0]!.message}`);
|
|
33
|
+
const spelling = (expression: Expr) =>
|
|
34
|
+
source.slice(expression.span.start, expression.span.end).trim();
|
|
35
|
+
const actions = (
|
|
36
|
+
body: BlockExpr,
|
|
37
|
+
prefix = "",
|
|
38
|
+
): Array<{ name: string; summary: string; actor: string }> => {
|
|
39
|
+
const result = body.entries
|
|
40
|
+
.filter((e) => e.key.startsWith("action "))
|
|
41
|
+
.map((entry) => {
|
|
42
|
+
const slots =
|
|
43
|
+
entry.value.kind === "block" ? entry.value.entries : [];
|
|
44
|
+
const summary = slots.find((e) => e.key === "summary")?.value;
|
|
45
|
+
const actor = slots.find((e) => e.key === "actor")?.value;
|
|
46
|
+
return {
|
|
47
|
+
name: prefix + entry.key.slice(7),
|
|
48
|
+
summary:
|
|
49
|
+
summary?.kind === "text"
|
|
50
|
+
? summary.value
|
|
51
|
+
: entry.key.slice(7).replaceAll("_", " "),
|
|
52
|
+
actor: actor ? spelling(actor) : "caller",
|
|
53
|
+
};
|
|
54
|
+
});
|
|
55
|
+
const records = body.entries.find((e) => e.key === "records")?.value;
|
|
56
|
+
if (records?.kind === "block")
|
|
57
|
+
for (const record of records.entries)
|
|
58
|
+
if (record.value.kind === "block")
|
|
59
|
+
result.push(...actions(record.value, `${prefix}${record.key}.`));
|
|
60
|
+
return result;
|
|
61
|
+
};
|
|
62
|
+
return {
|
|
63
|
+
name,
|
|
64
|
+
objects: parsed.program.decls
|
|
65
|
+
.filter((d) => d.kind === "instrument")
|
|
66
|
+
.map((decl) => {
|
|
67
|
+
const tunables = decl.parameters.map((parameter) => {
|
|
68
|
+
const type =
|
|
69
|
+
parameter.value.kind === "default"
|
|
70
|
+
? parameter.value.type
|
|
71
|
+
: parameter.value;
|
|
72
|
+
const fallback =
|
|
73
|
+
parameter.value.kind === "default"
|
|
74
|
+
? parameter.value.value
|
|
75
|
+
: undefined;
|
|
76
|
+
return {
|
|
77
|
+
name: parameter.key,
|
|
78
|
+
type: spelling(type),
|
|
79
|
+
...(type.kind === "call" && type.name === "enum"
|
|
80
|
+
? { values: type.args.map(spelling) }
|
|
81
|
+
: {}),
|
|
82
|
+
...tunableBounds(type),
|
|
83
|
+
required: !fallback && !(type.kind === "type" && type.optional),
|
|
84
|
+
...(fallback ? { default: spelling(fallback) } : {}),
|
|
85
|
+
};
|
|
86
|
+
});
|
|
87
|
+
const summary = decl.body.entries.find(
|
|
88
|
+
(e) => e.key === "summary",
|
|
89
|
+
)?.value;
|
|
90
|
+
return {
|
|
91
|
+
name: decl.name,
|
|
92
|
+
qualifiedName: `${name}.${decl.name}`,
|
|
93
|
+
summary:
|
|
94
|
+
summary?.kind === "text"
|
|
95
|
+
? summary.value
|
|
96
|
+
: decl.name.replaceAll("_", " "),
|
|
97
|
+
tunables,
|
|
98
|
+
constraints: (() => {
|
|
99
|
+
const block = decl.body.entries.find(
|
|
100
|
+
(entry) => entry.key === "constraints",
|
|
101
|
+
)?.value;
|
|
102
|
+
return block?.kind === "block"
|
|
103
|
+
? block.entries.map((entry) => {
|
|
104
|
+
if (
|
|
105
|
+
entry.value.kind !== "call" ||
|
|
106
|
+
entry.value.args.length !== 1
|
|
107
|
+
)
|
|
108
|
+
throw new Error("invalid tunable constraint");
|
|
109
|
+
return {
|
|
110
|
+
tunable: entry.key,
|
|
111
|
+
relation: entry.value.name,
|
|
112
|
+
other: spelling(entry.value.args[0]!),
|
|
113
|
+
};
|
|
114
|
+
})
|
|
115
|
+
: [];
|
|
116
|
+
})(),
|
|
117
|
+
parties: tunables
|
|
118
|
+
.filter((t) => ["party", "approval"].includes(t.type))
|
|
119
|
+
.map((t) => t.name),
|
|
120
|
+
actions: actions(decl.body),
|
|
121
|
+
};
|
|
122
|
+
}),
|
|
123
|
+
};
|
|
124
|
+
}),
|
|
125
|
+
};
|
|
126
|
+
}
|
package/src/index.ts
CHANGED
|
@@ -2,46 +2,14 @@ export {
|
|
|
2
2
|
compile,
|
|
3
3
|
type CompileDiagnostic,
|
|
4
4
|
type CompileOptions,
|
|
5
|
-
type CompileOriginMapEntry,
|
|
6
5
|
type CompileResult,
|
|
6
|
+
type CompileOriginMapEntry,
|
|
7
7
|
} from "./compile.ts";
|
|
8
|
-
export {
|
|
9
|
-
buildUdlCostManifest,
|
|
10
|
-
computeUdlFixedCost,
|
|
11
|
-
evaluateUdlCostManifest,
|
|
12
|
-
type HsxEffectKind,
|
|
13
|
-
type UdlCostManifest,
|
|
14
|
-
type UdlCostTable,
|
|
15
|
-
type UdlCostTables,
|
|
16
|
-
} from "./cost.ts";
|
|
17
|
-
export {
|
|
18
|
-
hsxDiagnostics,
|
|
19
|
-
type HsxDiagnosticCatalogEntry,
|
|
20
|
-
} from "./diagnostics.ts";
|
|
21
|
-
export type { HsxCompilerHost, ModuleSource } from "./modules.ts";
|
|
22
|
-
export { format, type FormatResult } from "./format.ts";
|
|
23
|
-
export { KEYWORDS } from "./lex.ts";
|
|
24
|
-
export {
|
|
25
|
-
overrideProgramEntries,
|
|
26
|
-
type ProgramEntryOverride,
|
|
27
|
-
type ProgramEntryOverrideIssue,
|
|
28
|
-
type ProgramEntryOverrideValue,
|
|
29
|
-
} from "./entry-overrides.ts";
|
|
30
|
-
export { type OriginMapEntry } from "./emit.ts";
|
|
31
|
-
export {
|
|
32
|
-
lowerGeneralProgram,
|
|
33
|
-
originForUdlPath,
|
|
34
|
-
emitUdlClause,
|
|
35
|
-
} from "./emit.ts";
|
|
36
8
|
export { parseProgram } from "./parse.ts";
|
|
37
|
-
export {
|
|
38
|
-
export {
|
|
39
|
-
byteOffsetToCodeUnit,
|
|
40
|
-
type BlockExpr,
|
|
41
|
-
type ExposeDecl,
|
|
42
|
-
type Program,
|
|
43
|
-
type ProgramDecl,
|
|
44
|
-
type UseDecl,
|
|
45
|
-
} from "./ast.ts";
|
|
9
|
+
export { lex, KEYWORDS } from "./lex.ts";
|
|
10
|
+
export { format } from "./format.ts";
|
|
46
11
|
export { bundledStandardLibrary, type StandardLibrary } from "./std-library.ts";
|
|
47
|
-
export
|
|
12
|
+
export { buildUdlCostManifest, type UdlCostManifest } from "./cost.ts";
|
|
13
|
+
export type { Program, Decl, Expr, Span, Diagnostic } from "./ast.ts";
|
|
14
|
+
|
|
15
|
+
export { headerManifest, HEADER_NAMES } from "./headers.ts";
|