enso/engine
Jaroslav Tulach 7f0cb88fa1
Consistent simple and qualified type name (#8448)
Fixes #8255 by unifying `get_qualified_type_name` and `get_simple_type_name` implementations.
2023-12-06 04:30:24 +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 Detach oneshot visualization when the evaluation failed (#8463) 2023-12-05 16:15:12 +00:00
launcher/src Upgrade enso to GraalVM for jdk 21 (#7991) 2023-11-17 18:02:36 +00:00
polyglot-api/src Detach oneshot visualization when the evaluation failed (#8463) 2023-12-05 16:15:12 +00:00
runner Add Chrome devtools and DAP tools for debugging (#8344) 2023-11-22 17:18:41 +00:00
runtime Consistent simple and qualified type name (#8448) 2023-12-06 04:30:24 +00:00
runtime-compiler/src/main Properly report errors on duplicated constructor names (#8438) 2023-12-01 17:30:34 +01:00
runtime-instrument-common/src Consistent simple and qualified type name (#8448) 2023-12-06 04:30:24 +00:00
runtime-instrument-id-execution/src/main/java/org/enso/interpreter/instrument Consistent simple and qualified type name (#8448) 2023-12-06 04:30:24 +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 Add graalpy packages to the component directory (#8351) 2023-12-04 11:50:59 +00:00
runtime-parser/src Properly report errors on duplicated constructor names (#8438) 2023-12-01 17:30:34 +01:00
runtime-with-instruments/src Consistent simple and qualified type name (#8448) 2023-12-06 04:30:24 +00:00
runtime-with-polyglot/src/test Consistent simple and qualified type name (#8448) 2023-12-06 04:30:24 +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.