|
|
|
@ -31,24 +31,12 @@ export function get_slot_definition(block: Block, scope: TemplateScope, lets: Le
|
|
|
|
|
|
|
|
|
|
const { context_lookup } = block.renderer;
|
|
|
|
|
|
|
|
|
|
let expression;
|
|
|
|
|
|
|
|
|
|
// i am well aware that this code is gross
|
|
|
|
|
// TODO make it less gross
|
|
|
|
|
const changes = {
|
|
|
|
|
get type() {
|
|
|
|
|
if (block.renderer.context_overflow) return 'ArrayExpression';
|
|
|
|
|
|
|
|
|
|
expression = Array.from(names)
|
|
|
|
|
.map(name => {
|
|
|
|
|
const i = context_lookup.get(name).index.value as number;
|
|
|
|
|
return x`${name} ? ${1 << i} : 0`;
|
|
|
|
|
})
|
|
|
|
|
.reduce((lhs, rhs) => x`${lhs} | ${rhs}`) as BinaryExpression;
|
|
|
|
|
|
|
|
|
|
return expression.type;
|
|
|
|
|
},
|
|
|
|
|
get elements() {
|
|
|
|
|
type: 'ParenthesizedExpression',
|
|
|
|
|
get expression() {
|
|
|
|
|
if (block.renderer.context_overflow) {
|
|
|
|
|
const grouped = [];
|
|
|
|
|
|
|
|
|
|
Array.from(names).forEach(name => {
|
|
|
|
@ -69,24 +57,19 @@ export function get_slot_definition(block: Block, scope: TemplateScope, lets: Le
|
|
|
|
|
: x`0`;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return elements;
|
|
|
|
|
},
|
|
|
|
|
get test() {
|
|
|
|
|
return expression.test;
|
|
|
|
|
},
|
|
|
|
|
get consequent() {
|
|
|
|
|
return expression.consequent;
|
|
|
|
|
},
|
|
|
|
|
get alternate() {
|
|
|
|
|
return expression.alternate;
|
|
|
|
|
},
|
|
|
|
|
get left() {
|
|
|
|
|
return expression.left;
|
|
|
|
|
},
|
|
|
|
|
get right() {
|
|
|
|
|
return expression.right;
|
|
|
|
|
},
|
|
|
|
|
operator: '|'
|
|
|
|
|
return {
|
|
|
|
|
type: 'ArrayExpression',
|
|
|
|
|
elements
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return Array.from(names)
|
|
|
|
|
.map(name => {
|
|
|
|
|
const i = context_lookup.get(name).index.value as number;
|
|
|
|
|
return x`${name} ? ${1 << i} : 0`;
|
|
|
|
|
})
|
|
|
|
|
.reduce((lhs, rhs) => x`${lhs} | ${rhs}`) as BinaryExpression;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|