3 import CommonBase from './CommonBase';
4 import * as bindings from '../bindings' // TODO: figure out location
8 export default class RouteHint extends CommonBase {
9 constructor(_dummy: object, ptr: number) {
14 protected finalize() {
18 bindings.RouteHint_free(this.ptr);
21 public RouteHint clone() {
22 number ret = bindings.RouteHint_clone(this.ptr);
23 const ret_hu_conv: RouteHint = new RouteHint(null, ret);
24 ret_hu_conv.ptrs_to.add(this);
28 public number hash() {
29 number ret = bindings.RouteHint_hash(this.ptr);
33 public boolean eq(RouteHint b) {
34 boolean ret = bindings.RouteHint_eq(this.ptr, b == null ? 0 : b.ptr & ~1);