3 import CommonBase from './CommonBase';
4 import * as bindings from '../bindings' // TODO: figure out location
8 export default class PrivateRoute extends CommonBase {
9 constructor(_dummy: object, ptr: number) {
14 protected finalize() {
18 bindings.PrivateRoute_free(this.ptr);
21 public PrivateRoute clone() {
22 number ret = bindings.PrivateRoute_clone(this.ptr);
23 const ret_hu_conv: PrivateRoute = new PrivateRoute(null, ret);
24 ret_hu_conv.ptrs_to.add(this);
28 public number hash() {
29 number ret = bindings.PrivateRoute_hash(this.ptr);
33 public boolean eq(PrivateRoute b) {
34 boolean ret = bindings.PrivateRoute_eq(this.ptr, b == null ? 0 : b.ptr & ~1);
39 public static Result_PrivateRouteCreationErrorZ constructor_new(RouteHint hops) {
40 number ret = bindings.PrivateRoute_new(hops == null ? 0 : hops.ptr & ~1);
41 Result_PrivateRouteCreationErrorZ ret_hu_conv = Result_PrivateRouteCreationErrorZ.constr_from_ptr(ret);
42 ret_hu_conv.ptrs_to.add(hops);
46 public RouteHint into_inner() {
47 number ret = bindings.PrivateRoute_into_inner(this.ptr);
48 const ret_hu_conv: RouteHint = new RouteHint(null, ret);
49 ret_hu_conv.ptrs_to.add(this);