28 lines
618 B
JavaScript
28 lines
618 B
JavaScript
|
// props.a.b should be added as a unconditional dependency to the reactive
|
||
|
// scope that produces x, since it is accessed unconditionally in all cfg
|
||
|
// paths
|
||
|
|
||
|
import { getNull, identity } from "shared-runtime";
|
||
|
function useCondDepInNestedIfElse(props, cond) {
|
||
|
const x = {};
|
||
|
if (cond |> identity(%)) {
|
||
|
if (getNull()) {
|
||
|
x.a = props.a.b;
|
||
|
} else {
|
||
|
x.b = props.a.b;
|
||
|
}
|
||
|
} else if (cond |> identity(%)) {
|
||
|
x.c = props.a.b;
|
||
|
} else {
|
||
|
x.d = props.a.b;
|
||
|
}
|
||
|
return x;
|
||
|
}
|
||
|
export const FIXTURE_ENTRYPOINT = {
|
||
|
fn: useCondDepInNestedIfElse,
|
||
|
params: [{
|
||
|
a: {
|
||
|
b: 2
|
||
|
}
|
||
|
}, true]
|
||
|
};
|