Programming language for distributed systems & p2p
Go to file
Dmitry Kurinskiy cd30ff8e8c
Introducing Product type (#225)
* Introducing Product type

* Main codebase compiles with Arrow(domain, codomain)

* Tests compile

* Tests passed

* Tiny fixes: use argument labels in js/ts generators

* Fix for return type in .ts

* Typescript fix

* Fix for option return in JS

* Arrow variance fix

* separated CompareTypes

* Added deprecation notices to ArrowType functions

* Compile error fixed

* Types doc comments

* Multi-value return is supported in the model

* Tests compilation fixes wip

* Test compiles

* Bugfix

* Bugfix
2021-08-06 16:31:47 +03:00
.github/workflows Automatically generate changelog (#220) 2021-07-27 16:41:23 +03:00
aqua Fixes missing par (#177) 2021-06-22 11:03:45 +03:00
aqua-src Introducing Product type (#225) 2021-08-06 16:31:47 +03:00
backend Introducing Product type (#225) 2021-08-06 16:31:47 +03:00
cli/src Migration to Scala 3 (#228) 2021-08-06 13:33:58 +03:00
compiler/src/main/scala/aqua/compiler Migration to Scala 3 (#228) 2021-08-06 13:33:58 +03:00
linker/src Migration to Scala 3 (#228) 2021-08-06 13:33:58 +03:00
model Introducing Product type (#225) 2021-08-06 16:31:47 +03:00
npm CLI hotfix: check node_modules in current directory (#130) 2021-05-24 19:54:53 +03:00
parser/src Introducing Product type (#225) 2021-08-06 16:31:47 +03:00
project Migration to Scala 3 (#228) 2021-08-06 13:33:58 +03:00
semantics/src Introducing Product type (#225) 2021-08-06 16:31:47 +03:00
types/src Introducing Product type (#225) 2021-08-06 16:31:47 +03:00
.gitignore First experiments with Aqua HLL 2021-02-01 16:17:46 +03:00
.scalafmt.conf Fix via path, complex tests (#27) 2021-04-05 10:40:51 +03:00
build.sbt Migration to Scala 3 (#228) 2021-08-06 13:33:58 +03:00
README.md Converting compiler to a pure function (#217) 2021-08-03 17:23:28 +03:00

Aqua

release

Aqua is a new-gen language for distributed systems.

Aqua programs are executed on many peers, sequentially or in parallel, forming a single-use coordination network.

Aqua's runtime is heterogeneous: it includes browsers, servers, devices, all involved in solving a single task. Therefore, Aqua scripts are compiled into several targets at once, with AIR and Typescript as a default.

Using Aqua

Please refer to Aqua Book to learn how to use Aqua.

Compiler CLI

To build the Aqua compiler, clone the repo & run sbt assembly, or simply download the latest JAR file from the releases page.

It requires java to run Aqua compiler from the command line:

java -jar aqua-cli-%version_number%.jar -i path/to/input/dir -o path/to/output/dir

Input directory should contain files with aqua scripts.

Repository structure

  • types data types, arrows, stream types definitions and variance
  • parser - parser, takes source text and produces a source AST
  • model - middle-end, internal representation of the code, optimizations and transfromations
  • semantics - rules to convert source AST into the model
  • linker - checks dependencies between modules, builds and combines an abstract dependencies tree
  • backend - compilation backend interface
  • compiler - compiler as a pure function made from linker, semantics and backend
  • backend/air generates AIR code from the middle-end model
  • backend/ts - generates AIR code and Typescript wrappers for use with Fluence JS SDK
  • cli - CLI interface