enso/engine
Dmitry Bushev 51540e2eb2
Add attributes to filesystem events (#8767)
close #8200

Changelog:
- add: `attributes` field to the file event notification
2024-01-16 13:48:53 +00:00
..
interpreter-dsl-test/src/test/java/org/enso/interpreter/dsl/test Update java formatter sbt plugin (#8543) 2023-12-15 14:45:23 +00:00
language-server Add attributes to filesystem events (#8767) 2024-01-16 13:48:53 +00:00
launcher/src All unit tests use the same testing logging provider (#8593) 2023-12-21 13:45:33 +00:00
polyglot-api/src Update java formatter sbt plugin (#8543) 2023-12-15 14:45:23 +00:00
runner Instructions to build Enso with Espresso for GraalVM for JDK21 (#8641) 2024-01-05 10:18:39 +01:00
runtime Support on_problems=Problem_Behavior.Report_Warning and Map_Error wrapping in Vector.map (#8595) 2024-01-16 09:36:22 +00:00
runtime-compiler/src/main Generate UUIDs on demand (#8728) 2024-01-12 21:50:12 +00:00
runtime-fat-jar/src/main/java Remove org.bouncycastle dependency (#8664) 2024-01-04 17:16:41 +01:00
runtime-instrument-common/src Support on_problems=Problem_Behavior.Report_Warning and Map_Error wrapping in Vector.map (#8595) 2024-01-16 09:36:22 +00:00
runtime-instrument-id-execution/src/main/java/org/enso/interpreter/instrument Update java formatter sbt plugin (#8543) 2023-12-15 14:45:23 +00:00
runtime-instrument-repl-debugger/src/main/java/org/enso/interpreter/instrument Introducing engine/runtime-compiler project (#8197) 2023-11-01 12:42:34 +01:00
runtime-instrument-runtime-server/src/main/java/org/enso/interpreter/instrument Update java formatter sbt plugin (#8543) 2023-12-15 14:45:23 +00:00
runtime-language-arrow/src Arrow language (#8512) 2024-01-12 18:19:36 +00:00
runtime-language-epb/src Update java formatter sbt plugin (#8543) 2023-12-15 14:45:23 +00:00
runtime-parser/src Generate UUIDs on demand (#8728) 2024-01-12 21:50:12 +00:00
runtime-test-instruments/src/main/java Executing (parts of) Truffle TCK with Enso values (#8685) 2024-01-12 07:21:16 +01:00
README.md Add a markdown style guide (#1022) 2020-07-21 13:59:40 +01:00

The Enso Engine

The Enso engine is the codebase responsible for compiling and executing Enso code, as well as providing language server functionality to users of the language. It is subdivided into two major components:

  • Language Server: The Enso language service.
  • Polyglot API: The truffle-boundary safe API for communication between the language server and the runtime.
  • Runner: The command-line interface for Enso.
  • Runtime: The compiler and interpreter for Enso.