extend-scopes-if.js21 lines
mainRawfunction foo(a, b, c) {
let x = [];
if (a) {
if (b) {
if (c) {
x.push(0);
}
}
}
if (x.length) {
return x;
}
return null;
}
export const FIXTURE_ENTRYPOINT = {
fn: foo,
params: ['TodoAdd'],
isComponent: 'TodoAdd',
};
Loading syntax highlighting…