mirror of
https://github.com/enso-org/enso.git
synced 2024-12-25 16:53:10 +03:00
22 lines
576 B
Markdown
22 lines
576 B
Markdown
---
|
|
layout: developer-doc
|
|
title: JVM Object Generation
|
|
category: parser
|
|
tags: [parser, jvm, object-generation]
|
|
order: 10
|
|
---
|
|
|
|
# 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.
|
|
|
|
<!-- MarkdownTOC levels="2,3" autolink="true" -->
|
|
|
|
<!-- /MarkdownTOC -->
|
|
|
|
> The actionables for this section are:
|
|
>
|
|
> - Work out how on earth this is going to work.
|
|
> - Produce a detailed design for this functionality.
|