sunform-as3query

Crates.iosunform-as3query
lib.rssunform-as3query
version0.2.1
sourcesrc
created_at2024-07-22 16:42:20.085637
updated_at2024-07-26 09:24:29.214118
descriptionQueries the ActionScript 3 language database.
homepage
repositoryhttps://github.com/sunformsdk/as3query
max_upload_size
id1311374
size279,045
Matheus Dias de Souza (hydroperfox)

documentation

README

sunform::as3query

sunform::as3query is a Rust library for creating, inspecting and modifying the database of the ActionScript 3 language conforming to the Sunform multimedia SDK.

sunform::as3query implements three dimensional names, property lookup, type conversion mechanism, variable number representations, interface implementation mechanism, method overriding mechanism, type substitution for parameterized types, an item factory, and several item representations (for example, classes, methods and variables).

Example

Create a package foo.bar and log its fully qualified name:

let db = Database::new(Default::default());
let foo_bar = db.factory().create_package(["foo", "bar"]);
println!("Package name: {}", foo_bar.fully_qualified_name());
Commit count: 0

cargo fmt