Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { createSelector, batch, createMemo, onMount, onCleanup, children, splitProps, createEffect, createSignal } from "solid-js";
import { createStore } from "solid-js/store";
import { MatchFailureException } from "./fable_modules/fable-library-js.5.0.0-alpha.13/Types.js";
import { printf, toConsole } from "./fable_modules/fable-library-js.5.0.0-alpha.13/String.js";

export const patternInput$004013 = createSignal(10);
Expand All @@ -26,9 +25,8 @@ export const getGetter = () => {
let check = 10;
(matchValue = (getter() | 0), (matchValue === 5) ? ((check = 10, (value_1) => {
})) : ((matchValue === 10) ? ((check = 5, (value) => {
})) : (() => {
throw new MatchFailureException("C:/Users/shaya/RiderProjects/Partas.Solid/Partas.Solid.Tests/SolidCases/ExperimentalBuilders/ExperimentalBuilders.fs", 24, 10);
})()));
})) : ((value_2) => {
})));
return check | 0;
};

Expand Down Expand Up @@ -66,8 +64,8 @@ export function ComponentWrap() {
check = 5;
break;
}
default:
throw new MatchFailureException("C:/Users/shaya/RiderProjects/Partas.Solid/Partas.Solid.Tests/SolidCases/ExperimentalBuilders/ExperimentalBuilders.fs", 46, 14);
default: {
}
}
return check | 0;
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ let getGetter = lambda {
match getter() with
| 10 -> check <- 5
| 5 -> check <- 10
| _ -> ()
check
}

Expand All @@ -46,6 +47,7 @@ let ComponentWrap () =
match getter() with
| 10 -> check <- 5
| 5 -> check <- 10
| _ -> ()
check
}

Expand Down