inverted-if-else.js18 lines
mainRawfunction foo(a, b, c) {
let x = null;
label: {
if (a) {
x = b;
break label;
}
x = c;
}
return x;
}
export const FIXTURE_ENTRYPOINT = {
fn: foo,
params: ['TodoAdd'],
isComponent: 'TodoAdd',
};
Loading syntax highlighting…