enso/engine
Pavel Marek 74436830ce
Fix build of engine benchmarks (#8620)
After #8467, Engine benchmarks are broken, they cannot compile - https://github.com/enso-org/enso/actions/runs/7268987483/job/19805862815#logs

This PR fixes the benchmark build

# Important Notes
Apart from fixing the build of `engine/bench`:
- Don't assemble any fat jars in `runtime/bench`.
- Use our `TestLogProvider` in the benches instead of NOOP provider.
- So that we can at least see warnings and errors in benchmarks.
2023-12-22 11:40:32 +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 All unit tests use the same testing logging provider (#8593) 2023-12-21 13:45:33 +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 Add org.jline as module to component directory (#8496) 2023-12-13 13:47:50 +00:00
runtime Fix build of engine benchmarks (#8620) 2023-12-22 11:40:32 +00:00
runtime-compiler/src/main Better context info in Type_Error raised from return type checks (#8566) 2023-12-20 18:22:47 +00:00
runtime-fat-jar/src/main/java Run unit tests with truffle-compiler (#8467) 2023-12-18 18:22:16 +01:00
runtime-instrument-common/src Stop parsing METADATA section for IdMap (#8574) 2023-12-19 12:03:33 +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-epb/src Update java formatter sbt plugin (#8543) 2023-12-15 14:45:23 +00:00
runtime-parser/src Better context info in Type_Error raised from return type checks (#8566) 2023-12-20 18:22:47 +00:00
runtime-test-instruments/src/main/java Run unit tests with truffle-compiler (#8467) 2023-12-18 18:22: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.