firefly-compiler 0.5.13 → 0.5.15

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.
@@ -267,7 +267,7 @@ return ff_core_Error.Error_rethrow(_w1)
267
267
  export function Task_race(self_, tasks_) {
268
268
  const successChannel_ = ff_core_Task.Task_channel(self_, 0);
269
269
  const failureChannel_ = ff_core_Task.Task_channel(self_, 0);
270
- let live_ = ff_core_List.List_size(tasks_);
270
+ let live_ = tasks_.length;
271
271
  const started_ = ff_core_List.List_map(tasks_, ((task_) => {
272
272
  return ff_core_Task.Task_spawn(self_, ((_) => {
273
273
  ff_core_Try.Try_catchAny(ff_core_Core.try_((() => {
@@ -357,7 +357,7 @@ return ff_core_Error.Error_rethrow(_w1)
357
357
  export async function Task_race$(self_, tasks_, $task) {
358
358
  const successChannel_ = (await ff_core_Task.Task_channel$(self_, 0, $task));
359
359
  const failureChannel_ = (await ff_core_Task.Task_channel$(self_, 0, $task));
360
- let live_ = ff_core_List.List_size(tasks_);
360
+ let live_ = tasks_.length;
361
361
  const started_ = (await ff_core_List.List_map$(tasks_, (async (task_, $task) => {
362
362
  return (await ff_core_Task.Task_spawn$(self_, (async (_, $task) => {
363
363
  (await ff_core_Try.Try_catchAny$((await ff_core_Core.try_$((async ($task) => {
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "description": "Firefly compiler",
5
5
  "author": "Firefly team",
6
6
  "license": "MIT",
7
- "version": "0.5.13",
7
+ "version": "0.5.15",
8
8
  "repository": {
9
9
  "type": "git",
10
10
  "url": "https://github.com/Ahnfelt/firefly-boot"
@@ -4,7 +4,7 @@
4
4
  "description": "Firefly language support",
5
5
  "author": "Firefly team",
6
6
  "license": "MIT",
7
- "version": "0.5.13",
7
+ "version": "0.5.15",
8
8
  "repository": {
9
9
  "type": "git",
10
10
  "url": "https://github.com/Ahnfelt/firefly-boot"