Crates.io | sunform-as3query |
lib.rs | sunform-as3query |
version | 0.2.1 |
source | src |
created_at | 2024-07-22 16:42:20.085637 |
updated_at | 2024-07-26 09:24:29.214118 |
description | Queries the ActionScript 3 language database. |
homepage | |
repository | https://github.com/sunformsdk/as3query |
max_upload_size | |
id | 1311374 |
size | 279,045 |
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).
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());