enso/engine
Hubert Plociniczak a14ebd6259
Increase timeout for running launcher command (#8486)
We've been experiencing consistently failures on MacOS due to timeouts.
Doubling the timeout, hoping this will be sufficient to eliminate such
false failures. Will seek alternative solutions if that does not rememdy
the problem on CI.
2023-12-07 16:34:55 +01: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 Mark some tests as flaky on Windows (#8446) 2023-12-06 11:17:34 +00:00
launcher/src Increase timeout for running launcher command (#8486) 2023-12-07 16:34:55 +01: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 Inline execution should support FQNs (#8454) 2023-12-06 10:03:06 +01:00
runtime-compiler/src/main Inline execution should support FQNs (#8454) 2023-12-06 10:03:06 +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 Inline execution should support FQNs (#8454) 2023-12-06 10:03:06 +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.