enso/engine
Kaz Wesley ce6c770fd7
Parse inline function signatures (#8470)
Implements #6166.

# Important Notes
- More consistent handling of `default` arguments. `default` is a valid identifier, and only has special meaning when it isn't bound in scope. Since distinguishing the builtin `default` from an identifier called `default` cannot be done until alias analysis has been performed, `default` is now represented in the AST as a regular identifier.
- `TreeToIr`: Remove `insideTypeAscription`. It was only used for bug-for-bug compatibility with the old parser during the transition.
2023-12-12 14:48:44 +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 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 Parse inline function signatures (#8470) 2023-12-12 14:48:44 +00: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 Parse inline function signatures (#8470) 2023-12-12 14:48:44 +00: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.