25 lines
740 B
JavaScript
25 lines
740 B
JavaScript
import wasm from "./diplomat-wasm.mjs"
|
|
import * as diplomatRuntime from "./diplomat-runtime.mjs"
|
|
|
|
const ICU4XUnitsConverter_box_destroy_registry = new FinalizationRegistry(underlying => {
|
|
wasm.ICU4XUnitsConverter_destroy(underlying);
|
|
});
|
|
|
|
export class ICU4XUnitsConverter {
|
|
#lifetimeEdges = [];
|
|
constructor(underlying, owned, edges) {
|
|
this.underlying = underlying;
|
|
this.#lifetimeEdges.push(...edges);
|
|
if (owned) {
|
|
ICU4XUnitsConverter_box_destroy_registry.register(this, underlying);
|
|
}
|
|
}
|
|
|
|
convert_f64(arg_value) {
|
|
return wasm.ICU4XUnitsConverter_convert_f64(this.underlying, arg_value);
|
|
}
|
|
|
|
clone() {
|
|
return new ICU4XUnitsConverter(wasm.ICU4XUnitsConverter_clone(this.underlying), true, []);
|
|
}
|
|
}
|