[C#] Run tests against release library in determinism CI run
[ldk-java] / ts / structs / ErrorAction.ts
diff --git a/ts/structs/ErrorAction.ts b/ts/structs/ErrorAction.ts
deleted file mode 100644 (file)
index 9c3a757..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-
-import CommonBase from './CommonBase';
-import * as bindings from '../bindings' // TODO: figure out location
-
-export default class ErrorAction extends CommonBase {
-       protected constructor(_dummy: object, ptr: number) { super(ptr); }
-       protected finalize() {
-               super.finalize();
-               if (this.ptr != 0) { bindings.ErrorAction_free(this.ptr); }
-       }
-       static constr_from_ptr(ptr: number): ErrorAction {
-               const raw_val: bindings.LDKErrorAction = bindings.LDKErrorAction_ref_from_ptr(ptr);
-               if (raw_val instanceof bindings.LDKErrorAction.DisconnectPeer) {
-                       return new DisconnectPeer(this.ptr, raw_val);
-               }
-               if (raw_val instanceof bindings.LDKErrorAction.IgnoreError) {
-                       return new IgnoreError(this.ptr, raw_val);
-               }
-               if (raw_val instanceof bindings.LDKErrorAction.SendErrorMessage) {
-                       return new SendErrorMessage(this.ptr, raw_val);
-               }
-               throw new Error('oops, this should be unreachable'); // Unreachable without extending the (internal) bindings interface
-       }
-
-}
-export class DisconnectPeer extends ErrorAction {
-       public msg: ErrorMessage;
-       private constructor(ptr: number, obj: bindings.LDKErrorAction.DisconnectPeer) {
-               super(null, ptr);
-               const msg: uint32_t = obj.msg;
-               ErrorMessage msg_hu_conv = new ErrorMessage(null, msg);
-               this.msg = msg_hu_conv;
-       }
-}
-export class IgnoreError extends ErrorAction {
-       private constructor(ptr: number, obj: bindings.LDKErrorAction.IgnoreError) {
-               super(null, ptr);
-       }
-}
-export class SendErrorMessage extends ErrorAction {
-       public msg: ErrorMessage;
-       private constructor(ptr: number, obj: bindings.LDKErrorAction.SendErrorMessage) {
-               super(null, ptr);
-               const msg: uint32_t = obj.msg;
-               ErrorMessage msg_hu_conv = new ErrorMessage(null, msg);
-               this.msg = msg_hu_conv;
-       }
-}