#actionscript #as3 #actionscript3 #data-model

nightly mxmlextrema-mxmlcaot

ActionScript 3 language semantic data model

13 releases

0.3.12 Sep 8, 2024
0.3.11 Aug 23, 2024

#185 in Programming languages

Download history 257/week @ 2024-08-11 691/week @ 2024-08-18 47/week @ 2024-08-25 2/week @ 2024-09-01 159/week @ 2024-09-08

1,019 downloads per month

Apache-2.0

290KB
6K SLoC

mxmlextrema::mxmlcaot

mxmlextrema::mxmlcaot is a Rust library for creating, inspecting and modifying the semantic data of the ActionScript 3 language ahead of time.

mxmlextrema::mxmlcaot implements three dimensional names, property lookup, conversion, number representation, interface implementation log, method overriding, applying parameterized types, environment variable cache, unused entity tracking, a factory, and several entities (for example, classes, methods and variables).

mxmlextrema::mxmlcaot does not include anything related to the Adobe Flex framework; these are implemented through a compiler.

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());

Global object requisites

The minimum requisites for the framework globals so that the MXMLCAOT database does not emit an infinite DeferError includes defining the following classes. Ensure you have defined them; the properties and methods are not required within them in MXMLCAOT.

  • Object
  • Boolean
  • Number
  • int
  • uint
  • float
  • String
  • Array
  • Namespace
  • Function
  • Class
  • XML
  • XMLList
  • RegExp
  • Date
  • Promise.<T>
  • Vector.<T> (in the top-level package)
  • frameworkname.util.ByteArray
  • frameworkname.util.Dictionary
  • frameworkname.util.Proxy

License

Apache 2.0

Dependencies

~4.5–7MB
~132K SLoC