toilscript 0.1.43 → 0.1.44
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/dist/cli.generated.d.ts +5 -1
- package/dist/cli.js +1 -1
- package/dist/cli.js.map +1 -1
- package/dist/importmap.json +2 -2
- package/dist/toilscript.generated.d.ts +5 -1
- package/dist/toilscript.js +64 -62
- package/dist/toilscript.js.map +3 -3
- package/dist/web.js +3 -3
- package/package.json +1 -1
package/dist/importmap.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"imports": {
|
|
3
|
-
"toilscript": "https://cdn.jsdelivr.net/npm/toilscript@0.1.
|
|
4
|
-
"toilscript/cli": "https://cdn.jsdelivr.net/npm/toilscript@0.1.
|
|
3
|
+
"toilscript": "https://cdn.jsdelivr.net/npm/toilscript@0.1.44/dist/toilscript.js",
|
|
4
|
+
"toilscript/cli": "https://cdn.jsdelivr.net/npm/toilscript@0.1.44/dist/cli.js",
|
|
5
5
|
"binaryen": "https://cdn.jsdelivr.net/npm/binaryen@130.0.0-nightly.20260609/index.js",
|
|
6
6
|
"long": "https://cdn.jsdelivr.net/npm/long@5.3.2/index.js"
|
|
7
7
|
}
|
|
@@ -608,7 +608,8 @@ declare module "types:toilscript/src/diagnosticMessages.generated" {
|
|
|
608
608
|
Scheduled_spec_0_is_not_a_valid_interval_or_cron_expression = 9011,
|
|
609
609
|
Scheduled_handler_0_must_take_no_arguments_and_return_void = 9012,
|
|
610
610
|
Stream_scope_must_be_a_StreamScope_enum_member = 9013,
|
|
611
|
-
Stream_connect_handler_0_has_an_invalid_signature = 9014
|
|
611
|
+
Stream_connect_handler_0_has_an_invalid_signature = 9014,
|
|
612
|
+
Stream_message_handler_0_has_an_invalid_signature = 9015
|
|
612
613
|
}
|
|
613
614
|
/** Translates a diagnostic code to its respective string. */
|
|
614
615
|
export function diagnosticCodeToString(code: DiagnosticCode): string;
|
|
@@ -3196,6 +3197,9 @@ declare module "types:toilscript/src/parser" {
|
|
|
3196
3197
|
/** True if `node` is a non-nullable named type whose identifier is exactly `name`
|
|
3197
3198
|
* (e.g. a `StreamPacket` parameter or a `StreamOutbound` return on a raw @message). */
|
|
3198
3199
|
private isNamedType;
|
|
3200
|
+
/** The `@data` message type named by `@stream({ message: SomeData })`, or "" for the raw-bytes
|
|
3201
|
+
* default (F3 / doc 03 section 2.5). Mirrors `buildToilStreamCatalog`'s `identField(objA, "message")`. */
|
|
3202
|
+
private streamMessageType;
|
|
3199
3203
|
/**
|
|
3200
3204
|
* The injected stream ring runtime (spec 05 sections 5-6; byte layouts in 10), emitted once per
|
|
3201
3205
|
* program under the `stream_dispatch` export gate. Provides two fixed 128 KiB rings in linear
|