expand => {
bool => '_expand_bool',
nest => '_expand_nest',
- bind => '_expand_bind',
row => '_expand_row',
op => '_expand_op',
func => '_expand_func',
values => '_expand_values',
+ bind => '_expand_noop',
+ literal => '_expand_noop',
},
expand_op => {
'between' => '_expand_between',
}
}
- # an explicit node type is currently assumed to be expanded (this is almost
- # certainly wrong and there should be expansion anyway)
-
- if ($self->{render}{$op}) {
- return { $k => $v };
- }
-
my $type = (
$self->{unknown_unop_always_func} && !$self->{render_op}{$op}
? -func
}
}
- return +{ $type => [
- $op,
- ($type eq -func and ref($v) eq 'ARRAY')
- ? map $self->_expand_expr($_), @$v
- : $self->_expand_expr($v)
- ] };
+ if ($type eq -func and ref($v) eq 'ARRAY') {
+ return $self->_expand_expr({ -func => [ $op, @$v ] });
+ }
+
+ return $self->_expand_expr({ $type => [ $op, $v ] });
}
sub _expand_hashpair_cmp {
return $self->_expand_expr($v);
}
-sub _expand_bind {
- my ($self, undef, $bind) = @_;
- return { -bind => $bind };
+sub _expand_noop {
+ my ($self, $type, $v) = @_;
+ return { "-${type}" => $v };
}
sub _expand_values {