enso/engine
Hubert Plociniczak b6bdf901a9
Cleanup after each test run (#8418)
Reducing leaks when running our test suite.

Potentially fixes #8408.

# Important Notes
Managed to keep thread count and memory in between runs relatively stable.
Initially:
![Screenshot from 2023-11-29 11-06-04](https://github.com/enso-org/enso/assets/292128/af437d8a-9111-4bd6-9033-a59030c7ebed)
Now:
![Screenshot from 2023-11-29 15-57-34](https://github.com/enso-org/enso/assets/292128/3c1f8aef-fe7e-4f5b-a236-12c86ea8b906)

The screenshot illustrates for `RuntimeVisualizationsTest` only. Will need to be applied in other places as well.

Applying the same style to `runtime-with-instruments`.
Before:
![Screenshot from 2023-11-29 16-55-11](https://github.com/enso-org/enso/assets/292128/385e11be-0265-431d-b0d7-c5096df11c50)
After:
![Screenshot from 2023-11-29 16-50-07](https://github.com/enso-org/enso/assets/292128/5e8c28ea-e921-484a-a82c-9f2d3e827e8b)
2023-11-29 19:02:59 +00:00
..
interpreter-dsl-test/src/test/java/org/enso/interpreter/dsl/test Use TruffleLogger bound to the engine to prevent illegal usage (#8169) 2023-10-31 08:53:05 +00:00
language-server Don't NPE on op ._ when translating tree to IR (#8381) 2023-11-23 19:56:56 +00:00
launcher/src Upgrade enso to GraalVM for jdk 21 (#7991) 2023-11-17 18:02:36 +00:00
polyglot-api/src Report failures when upserting visualizations (#8306) 2023-11-20 11:38:51 +00:00
runner Add Chrome devtools and DAP tools for debugging (#8344) 2023-11-22 17:18:41 +00:00
runtime Cleanup after each test run (#8418) 2023-11-29 19:02:59 +00:00
runtime-compiler/src/main More robust work with caches (#8393) 2023-11-28 09:03:15 +01:00
runtime-instrument-common/src Cleanup after each test run (#8418) 2023-11-29 19:02:59 +00:00
runtime-instrument-id-execution/src/main/java/org/enso/interpreter/instrument Avoid NPE during instrumentation (#8317) 2023-11-17 14:38:27 +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 Fix initialization race-condition in runtime connector (#7985) 2023-10-13 10:03:27 +00:00
runtime-language-epb/src/main/java/org/enso/interpreter/epb Ensure compilation is run with a compilation lock (#8395) 2023-11-27 14:01:23 +00:00
runtime-parser/src More robust work with caches (#8393) 2023-11-28 09:03:15 +01:00
runtime-with-instruments/src Cleanup after each test run (#8418) 2023-11-29 19:02:59 +00:00
runtime-with-polyglot/src/test Cleanup after each test run (#8418) 2023-11-29 19:02:59 +00: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.