Throw throws an exception with the given value.
(v *Value)
| 107 | |
| 108 | // Throw throws an exception with the given value. |
| 109 | func (b *Builder) Throw(v *Value) { |
| 110 | b.m.exceptions.throw(b, v) |
| 111 | } |
| 112 | |
| 113 | func (b *Builder) callArgs(sig Signature, name string, args []*Value) []llvm.Value { |
| 114 | if sig.Variadic { |