Documentation Language: Swift

Class

ATLParser

Parser for ATL (Atlas Transformation Language) files

actor ATLParser

Overview

The ATL parser converts ATL source files into structured ATL modules that can be executed by the ATL virtual machine. It supports:

Supported ATL Constructs

Example Usage

let parser = ATLParser()
let module = try await parser.parse(atlFileURL)

Topics

Initializers

?
init(enableDebugging:)

Public initializer for ATLParser

Instance Methods

F
parse(_:)

Parse an ATL file and return an ATL module

Default Implementations

Relationships

Conforms To