2 import CommonBase from './CommonBase';
3 import * as bindings from '../bindings' // TODO: figure out location
5 public class Result_InvoiceSemanticErrorZ extends CommonBase {
6 private Result_InvoiceSemanticErrorZ(Object _dummy, long ptr) { super(ptr); }
7 protected void finalize() throws Throwable {
8 if (ptr != 0) { bindings.CResult_InvoiceSemanticErrorZ_free(ptr); } super.finalize();
11 static Result_InvoiceSemanticErrorZ constr_from_ptr(long ptr) {
12 if (bindings.LDKCResult_InvoiceSemanticErrorZ_result_ok(ptr)) {
13 return new Result_InvoiceSemanticErrorZ_OK(null, ptr);
15 return new Result_InvoiceSemanticErrorZ_Err(null, ptr);
18 public static final class Result_InvoiceSemanticErrorZ_OK extends Result_InvoiceSemanticErrorZ {
19 public final Invoice res;
20 private Result_InvoiceSemanticErrorZ_OK(Object _dummy, long ptr) {
22 number res = bindings.LDKCResult_InvoiceSemanticErrorZ_get_ok(ptr);
23 const res_hu_conv: Invoice = new Invoice(null, res);
24 res_hu_conv.ptrs_to.add(this);
25 this.res = res_hu_conv;
29 public static final class Result_InvoiceSemanticErrorZ_Err extends Result_InvoiceSemanticErrorZ {
30 public final SemanticError err;
31 private Result_InvoiceSemanticErrorZ_Err(Object _dummy, long ptr) {
33 this.err = bindings.LDKCResult_InvoiceSemanticErrorZ_get_err(ptr);
37 public static Result_InvoiceSemanticErrorZ constructor_ok(Invoice o) {
38 number ret = bindings.CResult_InvoiceSemanticErrorZ_ok(o == null ? 0 : o.ptr & ~1);
39 Result_InvoiceSemanticErrorZ ret_hu_conv = Result_InvoiceSemanticErrorZ.constr_from_ptr(ret);
43 public static Result_InvoiceSemanticErrorZ constructor_err(SemanticError e) {
44 number ret = bindings.CResult_InvoiceSemanticErrorZ_err(e);
45 Result_InvoiceSemanticErrorZ ret_hu_conv = Result_InvoiceSemanticErrorZ.constr_from_ptr(ret);
49 public Result_InvoiceSemanticErrorZ clone() {
50 number ret = bindings.CResult_InvoiceSemanticErrorZ_clone(this.ptr);
51 Result_InvoiceSemanticErrorZ ret_hu_conv = Result_InvoiceSemanticErrorZ.constr_from_ptr(ret);