@hyperscale0/hsx 2.4.0 → 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 -400
- 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 -4131
- 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 -5381
- 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/lex.ts
CHANGED
|
@@ -1,216 +1,120 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* The HSX lexer. Hand-written, total: every input produces a token stream
|
|
3
|
-
* ending in `eof`, with malformed stretches reported as diagnostics and
|
|
4
|
-
* skipped. Tokens carry byte-offset spans; whitespace and `//` comments are
|
|
5
|
-
* insignificant everywhere.
|
|
6
|
-
*/
|
|
7
|
-
|
|
8
1
|
import type { Diagnostic, Span } from "./ast.ts";
|
|
9
|
-
|
|
10
|
-
type TokenKind =
|
|
11
|
-
| "eof"
|
|
12
|
-
| "ident"
|
|
13
|
-
| "keyword"
|
|
14
|
-
| "number"
|
|
15
|
-
| "percent"
|
|
16
|
-
| "punct"
|
|
17
|
-
| "string";
|
|
18
|
-
|
|
19
2
|
export const KEYWORDS = [
|
|
3
|
+
"program",
|
|
4
|
+
"header",
|
|
5
|
+
"use",
|
|
6
|
+
"party",
|
|
7
|
+
"role",
|
|
8
|
+
"currency",
|
|
9
|
+
"instrument",
|
|
10
|
+
"fields",
|
|
11
|
+
"lifecycle",
|
|
20
12
|
"action",
|
|
21
|
-
"as",
|
|
22
|
-
"asset",
|
|
23
|
-
"commit",
|
|
24
|
-
"const",
|
|
25
|
-
"expect",
|
|
26
13
|
"expose",
|
|
27
|
-
"
|
|
28
|
-
"
|
|
14
|
+
"hide",
|
|
15
|
+
"as",
|
|
16
|
+
"cap",
|
|
17
|
+
"of",
|
|
18
|
+
"when",
|
|
19
|
+
"constraints",
|
|
20
|
+
"requires",
|
|
21
|
+
"invariants",
|
|
22
|
+
"moves",
|
|
29
23
|
"from",
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
24
|
+
"to",
|
|
25
|
+
"in",
|
|
26
|
+
"by",
|
|
27
|
+
"for",
|
|
28
|
+
"is",
|
|
29
|
+
"approval",
|
|
30
|
+
"unique",
|
|
31
|
+
"on",
|
|
32
|
+
"count",
|
|
33
|
+
"sum",
|
|
34
|
+
"hours",
|
|
35
|
+
"between",
|
|
36
|
+
"and",
|
|
37
|
+
"timezone",
|
|
38
|
+
"evidence",
|
|
39
|
+
"reserve",
|
|
40
|
+
"post",
|
|
41
|
+
"void",
|
|
42
|
+
"capture",
|
|
43
|
+
"fee",
|
|
44
|
+
"shares",
|
|
43
45
|
] as const;
|
|
44
|
-
|
|
45
46
|
export interface Token {
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
readonly text: string;
|
|
50
|
-
/** Decoded value for string literals; raw digits for numbers/percents. */
|
|
51
|
-
readonly value: string;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
/** Source trivia retained for tools that must reproduce author comments. */
|
|
55
|
-
export interface CommentTrivia {
|
|
56
|
-
readonly kind: "line_comment";
|
|
57
|
-
readonly span: Span;
|
|
58
|
-
readonly text: string;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
export const PUNCT = [
|
|
62
|
-
"{",
|
|
63
|
-
"}",
|
|
64
|
-
"(",
|
|
65
|
-
")",
|
|
66
|
-
"[",
|
|
67
|
-
"]",
|
|
68
|
-
":",
|
|
69
|
-
",",
|
|
70
|
-
";",
|
|
71
|
-
"=",
|
|
72
|
-
"|",
|
|
73
|
-
".",
|
|
74
|
-
"<",
|
|
75
|
-
">",
|
|
76
|
-
"?",
|
|
77
|
-
] as const;
|
|
78
|
-
const PUNCT_SET: ReadonlySet<string> = new Set(PUNCT);
|
|
79
|
-
const KEYWORD_SET: ReadonlySet<string> = new Set(KEYWORDS);
|
|
80
|
-
|
|
81
|
-
// Case conventions (snake_case declarations, uppercase currency codes) are
|
|
82
|
-
// semantic rules the typechecker words per position; the lexer stays permissive.
|
|
83
|
-
const isIdentStart = (ch: string): boolean => /[A-Za-z]/.test(ch);
|
|
84
|
-
const isIdentPart = (ch: string): boolean => /[A-Za-z0-9_]/.test(ch);
|
|
85
|
-
const isDigit = (ch: string): boolean => ch >= "0" && ch <= "9";
|
|
86
|
-
|
|
87
|
-
export interface LexResult {
|
|
88
|
-
readonly comments: readonly CommentTrivia[];
|
|
89
|
-
readonly diagnostics: readonly Diagnostic[];
|
|
90
|
-
readonly tokens: readonly Token[];
|
|
47
|
+
kind: "name" | "number" | "string" | "date" | "punct" | "eof";
|
|
48
|
+
text: string;
|
|
49
|
+
span: Span;
|
|
91
50
|
}
|
|
92
|
-
|
|
93
|
-
|
|
51
|
+
export function lex(source: string): {
|
|
52
|
+
tokens: Token[];
|
|
53
|
+
diagnostics: Diagnostic[];
|
|
54
|
+
} {
|
|
94
55
|
const tokens: Token[] = [];
|
|
95
|
-
const comments: CommentTrivia[] = [];
|
|
96
56
|
const diagnostics: Diagnostic[] = [];
|
|
97
57
|
let index = 0;
|
|
98
|
-
|
|
99
|
-
const push = (kind: TokenKind, start: number, text: string, value = text) => {
|
|
100
|
-
tokens.push({ kind, span: { end: index, start }, text, value });
|
|
101
|
-
};
|
|
102
|
-
|
|
103
58
|
while (index < source.length) {
|
|
104
|
-
const
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
if (ch === "/" && source[index + 1] === "/") {
|
|
112
|
-
const start = index;
|
|
113
|
-
while (index < source.length && source[index] !== "\n") index += 1;
|
|
114
|
-
comments.push({
|
|
115
|
-
kind: "line_comment",
|
|
116
|
-
span: { end: index, start },
|
|
117
|
-
text: source.slice(start, index),
|
|
118
|
-
});
|
|
119
|
-
continue;
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
if (PUNCT_SET.has(ch)) {
|
|
123
|
-
const start = index;
|
|
124
|
-
index += 1;
|
|
125
|
-
push("punct", start, ch);
|
|
126
|
-
continue;
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
if (ch === "-" && source[index + 1] === ">") {
|
|
130
|
-
const start = index;
|
|
131
|
-
index += 2;
|
|
132
|
-
push("punct", start, "->");
|
|
59
|
+
const start = index;
|
|
60
|
+
const tail = source.slice(index);
|
|
61
|
+
const whitespace = /^\s+|^\/\/[^\n]*/.exec(tail);
|
|
62
|
+
if (whitespace) {
|
|
63
|
+
index += whitespace[0].length;
|
|
133
64
|
continue;
|
|
134
65
|
}
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
66
|
+
const date =
|
|
67
|
+
/^\d{4}-\d{2}-\d{2}(?:T\d{2}:\d{2}:\d{2}(?:\.\d{1,3})?(?:Z|[+-]\d{2}:\d{2}))?/.exec(
|
|
68
|
+
tail,
|
|
69
|
+
);
|
|
70
|
+
const number = /^-?\d+(?:\.\d+)?(?:%|ms|[smhdw])?/.exec(tail);
|
|
71
|
+
const name = /^[A-Za-z_][A-Za-z0-9_]*/.exec(tail);
|
|
72
|
+
let kind: Token["kind"];
|
|
73
|
+
let text: string;
|
|
74
|
+
if (date) {
|
|
75
|
+
kind = "date";
|
|
76
|
+
text = date[0];
|
|
77
|
+
} else if (number) {
|
|
78
|
+
kind = "number";
|
|
79
|
+
text = number[0];
|
|
80
|
+
} else if (name) {
|
|
81
|
+
kind = "name";
|
|
82
|
+
text = name[0];
|
|
83
|
+
} else if (tail[0] === '"') {
|
|
84
|
+
const quoted = /^"(?:[^"\\\n]|\\["\\/bfnrt]|\\u[0-9a-fA-F]{4})*"/.exec(
|
|
85
|
+
tail,
|
|
86
|
+
);
|
|
87
|
+
if (!quoted) {
|
|
153
88
|
diagnostics.push({
|
|
154
|
-
|
|
155
|
-
|
|
89
|
+
code: "HSX1000",
|
|
90
|
+
message: "unclosed or invalid string",
|
|
91
|
+
fix: "close the string and use JSON escapes",
|
|
92
|
+
span: { start, end: start + 1 },
|
|
156
93
|
});
|
|
94
|
+
index++;
|
|
95
|
+
continue;
|
|
157
96
|
}
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
}
|
|
172
|
-
}
|
|
173
|
-
|
|
174
|
-
if (source[index] === "%") {
|
|
175
|
-
index += 1;
|
|
176
|
-
push("percent", start, source.slice(start, index), raw);
|
|
177
|
-
} else {
|
|
178
|
-
push("number", start, raw, raw);
|
|
179
|
-
}
|
|
180
|
-
continue;
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
if (isIdentStart(ch)) {
|
|
184
|
-
const start = index;
|
|
185
|
-
while (index < source.length && isIdentPart(source[index] as string)) {
|
|
186
|
-
index += 1;
|
|
187
|
-
}
|
|
188
|
-
const text = source.slice(start, index);
|
|
189
|
-
push(KEYWORD_SET.has(text) ? "keyword" : "ident", start, text);
|
|
97
|
+
kind = "string";
|
|
98
|
+
text = quoted[0];
|
|
99
|
+
} else if (/^(==|!=|<=|>=)/.test(tail)) {
|
|
100
|
+
kind = "punct";
|
|
101
|
+
text = tail.slice(0, 2);
|
|
102
|
+
} else if (/^[{}()[\]:,;=<>?.|]/.test(tail)) {
|
|
103
|
+
kind = "punct";
|
|
104
|
+
text = tail[0]!;
|
|
105
|
+
} else {
|
|
106
|
+
diagnostics.push({
|
|
107
|
+
code: "HSX1000",
|
|
108
|
+
message: `unexpected character ${tail[0]}`,
|
|
109
|
+
fix: "remove this character",
|
|
110
|
+
span: { start, end: start + 1 },
|
|
111
|
+
});
|
|
112
|
+
index++;
|
|
190
113
|
continue;
|
|
191
114
|
}
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
while (
|
|
195
|
-
index < source.length &&
|
|
196
|
-
!/[\sA-Za-z0-9_"]/.test(source[index] as string) &&
|
|
197
|
-
!PUNCT_SET.has(source[index] as string) &&
|
|
198
|
-
!(source[index] === "/" && source[index + 1] === "/")
|
|
199
|
-
) {
|
|
200
|
-
index += 1;
|
|
201
|
-
}
|
|
202
|
-
if (index === start) index += 1;
|
|
203
|
-
diagnostics.push({
|
|
204
|
-
message: `"${source.slice(start, index)}" is not part of the HSX language`,
|
|
205
|
-
span: { end: index, start },
|
|
206
|
-
});
|
|
115
|
+
index += text.length;
|
|
116
|
+
tokens.push({ kind, text, span: { start, end: index } });
|
|
207
117
|
}
|
|
208
|
-
|
|
209
|
-
tokens
|
|
210
|
-
kind: "eof",
|
|
211
|
-
span: { end: source.length, start: source.length },
|
|
212
|
-
text: "",
|
|
213
|
-
value: "",
|
|
214
|
-
});
|
|
215
|
-
return { comments, diagnostics, tokens };
|
|
118
|
+
tokens.push({ kind: "eof", text: "", span: { start: index, end: index } });
|
|
119
|
+
return { tokens, diagnostics };
|
|
216
120
|
}
|