3 import CommonBase from './CommonBase';
4 import * as bindings from '../bindings' // TODO: figure out location
8 export default class Init extends CommonBase {
9 constructor(_dummy: object, ptr: number) {
14 protected finalize() {
18 bindings.Init_free(this.ptr);
21 public InitFeatures get_features() {
22 number ret = bindings.Init_get_features(this.ptr);
23 const ret_hu_conv: InitFeatures = new InitFeatures(null, ret);
24 ret_hu_conv.ptrs_to.add(this);
28 public void set_features(InitFeatures val) {
29 bindings.Init_set_features(this.ptr, val == null ? 0 : val.ptr & ~1);
32 public static Init constructor_new(InitFeatures features_arg) {
33 number ret = bindings.Init_new(features_arg == null ? 0 : features_arg.ptr & ~1);
34 const ret_hu_conv: Init = new Init(null, ret);
35 ret_hu_conv.ptrs_to.add(ret_hu_conv);
39 public number clone_ptr() {
40 number ret = bindings.Init_clone_ptr(this.ptr);
45 number ret = bindings.Init_clone(this.ptr);
46 const ret_hu_conv: Init = new Init(null, ret);
47 ret_hu_conv.ptrs_to.add(this);
51 public Uint8Array write() {
52 Uint8Array ret = bindings.Init_write(this.ptr);
56 public static Result_InitDecodeErrorZ constructor_read(Uint8Array ser) {
57 number ret = bindings.Init_read(ser);
58 Result_InitDecodeErrorZ ret_hu_conv = Result_InitDecodeErrorZ.constr_from_ptr(ret);