Source code

Revision control

Copy as Markdown

Other Tools

// generated by diplomat-tool
import { CodePointSetData } from "./CodePointSetData.mjs"
import { ScriptExtensionsSet } from "./ScriptExtensionsSet.mjs"
import wasm from "./diplomat-wasm.mjs";
import * as diplomatRuntime from "./diplomat-runtime.mjs";
/**
* A slightly faster ScriptWithExtensions object
*
* See the [Rust documentation for `ScriptWithExtensionsBorrowed`](https://docs.rs/icu/latest/icu/properties/script/struct.ScriptWithExtensionsBorrowed.html) for more information.
*/
const ScriptWithExtensionsBorrowed_box_destroy_registry = new FinalizationRegistry((ptr) => {
wasm.icu4x_ScriptWithExtensionsBorrowed_destroy_mv1(ptr);
});
export class ScriptWithExtensionsBorrowed {
// Internal ptr reference:
#ptr = null;
// Lifetimes are only to keep dependencies alive.
// Since JS won't garbage collect until there are no incoming edges.
#selfEdge = [];
#aEdge = [];
#internalConstructor(symbol, ptr, selfEdge, aEdge) {
if (symbol !== diplomatRuntime.internalConstructor) {
console.error("ScriptWithExtensionsBorrowed is an Opaque type. You cannot call its constructor.");
return;
}
this.#aEdge = aEdge;
this.#ptr = ptr;
this.#selfEdge = selfEdge;
// Are we being borrowed? If not, we can register.
if (this.#selfEdge.length === 0) {
ScriptWithExtensionsBorrowed_box_destroy_registry.register(this, this.#ptr);
}
return this;
}
get ffiValue() {
return this.#ptr;
}
/**
* Get the Script property value for a code point
* Get the Script property value for a code point
*
* See the [Rust documentation for `get_script_val`](https://docs.rs/icu/latest/icu/properties/script/struct.ScriptWithExtensionsBorrowed.html#method.get_script_val) for more information.
*/
getScriptVal(ch) {
const result = wasm.icu4x_ScriptWithExtensionsBorrowed_get_script_val_mv1(this.ffiValue, ch);
try {
return result;
}
finally {
}
}
/**
* Get the Script property value for a code point
*
* See the [Rust documentation for `get_script_extensions_val`](https://docs.rs/icu/latest/icu/properties/script/struct.ScriptWithExtensionsBorrowed.html#method.get_script_extensions_val) for more information.
*/
getScriptExtensionsVal(ch) {
// This lifetime edge depends on lifetimes 'a
let aEdges = [this];
const result = wasm.icu4x_ScriptWithExtensionsBorrowed_get_script_extensions_val_mv1(this.ffiValue, ch);
try {
return new ScriptExtensionsSet(diplomatRuntime.internalConstructor, result, [], aEdges);
}
finally {
}
}
/**
* Check if the Script_Extensions property of the given code point covers the given script
*
* See the [Rust documentation for `has_script`](https://docs.rs/icu/latest/icu/properties/script/struct.ScriptWithExtensionsBorrowed.html#method.has_script) for more information.
*/
hasScript(ch, script) {
const result = wasm.icu4x_ScriptWithExtensionsBorrowed_has_script_mv1(this.ffiValue, ch, script);
try {
return result;
}
finally {
}
}
/**
* Build the CodePointSetData corresponding to a codepoints matching a particular script
* in their Script_Extensions
*
* See the [Rust documentation for `get_script_extensions_set`](https://docs.rs/icu/latest/icu/properties/script/struct.ScriptWithExtensionsBorrowed.html#method.get_script_extensions_set) for more information.
*/
getScriptExtensionsSet(script) {
const result = wasm.icu4x_ScriptWithExtensionsBorrowed_get_script_extensions_set_mv1(this.ffiValue, script);
try {
return new CodePointSetData(diplomatRuntime.internalConstructor, result, []);
}
finally {
}
}
constructor(symbol, ptr, selfEdge, aEdge) {
return this.#internalConstructor(...arguments)
}
}