enso/engine
Pavel Marek 56b289ae79
Move common testing functionality to a separate project (#10112)
Introduce a new `test-utils` project, and moves the `TestBase` there. Moreover, `TestBase` is renamed to `TestUtils` and is no longer an abstract class.

# Important Notes
`test-utils` project does not depend on junit, so it can be used, for example, by any benchmarks as well.
2024-05-29 11:50:03 +00:00
..
common/src/main/java/org/enso/common Towards simplifying runtime-compiler dependencies (#8894) 2024-04-25 10:03:42 +02:00
interpreter-dsl-test/src/test/java/org/enso/interpreter/dsl/test Towards simplifying runtime-compiler dependencies (#8894) 2024-04-25 10:03:42 +02:00
language-server Start Ydoc with the language server (#9862) 2024-05-28 13:51:42 +00:00
launcher/src Open Java modules for Snowflake setup (#9664) 2024-04-16 21:01:32 +00:00
polyglot-api/src Use simple type name as Jackson type id (#9961) 2024-05-16 14:26:26 +00:00
runner Enso Library Feature to execute (a bit of) Base_Tests (#9997) 2024-05-23 08:20:19 +02:00
runtime Start Ydoc with the language server (#9862) 2024-05-28 13:51:42 +00:00
runtime-benchmarks/src/main Combine builders for Vector.build and Vector.new_builder (#9922) 2024-05-17 16:18:47 +00:00
runtime-compiler/src Suspended arguments need one more child scope (#10104) 2024-05-28 17:53:08 +02:00
runtime-fat-jar/src/main/java Start Ydoc with the language server (#9862) 2024-05-28 13:51:42 +00:00
runtime-instrument-common/src Avoid out-of-context interrupted lock exceptions (#10095) 2024-05-28 08:50:21 +00:00
runtime-instrument-id-execution/src/main/java/org/enso/interpreter/instrument Instrumentation, visualization and autoscoped constructors (#9452) 2024-04-03 12:14: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 Towards simplifying runtime-compiler dependencies (#8894) 2024-04-25 10:03:42 +02:00
runtime-integration-tests/src/test Move common testing functionality to a separate project (#10112) 2024-05-29 11:50:03 +00:00
runtime-language-arrow/src Arrow builder is not an Array (#9358) 2024-03-13 14:37:41 +00:00
runtime-language-epb/src Atom constructors can be private (#9692) 2024-04-29 14:43:18 +02:00
runtime-parser/src Removing last node from main graph makes execution error (#10048) 2024-05-24 14:11:06 +00:00
runtime-suggestions/src/main/scala/org/enso/compiler/suggestions Filter private constructors from Suggestions Database (#10032) 2024-05-23 06:48:29 +00:00
runtime-test-instruments/src/main/java Binary operator resolution based on that value (#8779) 2024-01-27 08:38:47 +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.