Function binValue [src]
Prototype
pub fn binValue(self: *Builder, tag: Constant.Tag, lhs: Constant, rhs: Constant) Allocator.Error!Value
Parameters
self: *Builder
tag: Constant.Tag
lhs: Constant
rhs: Constant
Source
pub fn binValue(self: *Builder, tag: Constant.Tag, lhs: Constant, rhs: Constant) Allocator.Error!Value {
return (try self.binConst(tag, lhs, rhs)).toValue();
}