AST Libraries
Overview of Amplication’s AST libraries for code generation
Amplication AST Libraries
These AST libraries are used by Blueprint and .NET engines. Node.js plugins use different methods for code generation as detailed in the Node.js Plugin Events documentation.
Amplication AST libraries provide functionality for generating Abstract Syntax Trees (AST) for different programming languages in the Amplication platform. These libraries are used to generate type-safe, well-structured code for various programming languages.
Key Features
- Type-safe AST generation
- Support for multiple programming languages
- Common interfaces and types across language implementations
- Extensible architecture for adding new language support
Scope and Purpose
The AST libraries are not intended to cover all language functionality. Instead, they focus on the elements needed to create the foundation and boilerplate code with Amplication plugins. These libraries provide the essential building blocks for generating well-structured code across different languages.
When more specialized or custom code is needed, the CodeBlock
can be used as a generic node that can include any code as a string. This flexibility allows you to generate both structured AST-based code and custom code blocks when necessary.
Available Libraries
Amplication provides several AST libraries:
- AST Types - Common interfaces and types used across different language implementations
- C# AST - Library for generating C# code through an abstract syntax tree
- Java AST - Library for generating Java code through an abstract syntax tree
- Python AST - Library for generating Python code through an abstract syntax tree
Installation
To install the libraries:
Getting Started
To use these libraries in your project:
Documentation
AST Libraries API Documentation
Complete API reference for all AST libraries. Explore class definitions, method signatures, type hierarchies, and usage examples to help you build powerful code generation plugins.
Using AST Libraries in Plugins
Amplication’s plugin architecture is built around the AST libraries. When developing plugins, you can leverage these libraries to generate code that integrates seamlessly with Amplication’s code generation process.
Plugin Integration
All Amplication plugins work with objects of type IAstNode
from the AST libraries. Plugins typically:
- Create AST nodes using the appropriate library (Java, C#, etc.)
- Create an
IFile<IAstNode>
object that references the AST node - Add the file to the context using
context.files.set()
This approach allows plugins to generate code that’s properly integrated into Amplication’s code generation pipeline.
Example: Using AST in a Plugin
Here’s an example of how a plugin might use the Java AST library to create a class:
Using the AST libraries gives you fine-grained control over code generation while ensuring the generated code integrates correctly with the rest of the Amplication-generated codebase.
Was this page helpful?