Skip to main content

Library Structure

Project submodules

The Collektive project is organized into several submodules, each serving a distinct role:

  • plugin is divided into two components:

    • compiler-plugin: a compiler plugin that modifies a data structure used to track the runtime stack. Each time a function is called, its name is registered in this structure.
    • gradle-plugin: a necessary plugin that allows Gradle projects to include and apply the compiler plugin.
  • dsl: the core implementation of the Domain-Specific Language (DSL) for aggregate computing, exposing the operators and logic for this programming paradigm.

  • embedded:

    • compiler-embedded: an embeddable version of the compiler designed for integration into other projects. This allows developers to leverage the compiler’s capabilities directly within their applications, making it easier to extend and customize compilation features.
  • stdlib: a standard library providing essential functions and utilities to support aggregate computing operations.

Appropriate tests have been implemented for each submodule.

Project structure

Collektive