mirror of
https://github.com/enso-org/enso.git
synced 2024-11-23 08:08:34 +03:00
831 B
831 B
layout | title | category | tags | order | |||
---|---|---|---|---|---|---|---|
developer-doc | JVM Object Generation | parser |
|
9 |
JVM Object Generation
The JVM object generation phase is responsible for creating JVM-native objects representing the parser AST from the rust-native AST. This is required to allow the compiler and runtime to work with the AST.
Overall Architecture
The JVM foreign function interface (FFI), named Java Native Interface (JNI), enables the Rust parser library to call and be called by the parser library implemented in Scala.
Specifically, in our architecture, the JNI is used for:
- Invoking Rust parser methods from Scala.
- Invoking Scala AST constructors from Rust.