mirror of
https://github.com/enso-org/enso.git
synced 2024-11-24 08:41:40 +03:00
9fdcfc0105
Very verbose log output discovered by @4e6. Needed an explicit log setup call, similar to other language server's tests. Before (tons of): ``` ... 23:04:42.319 [TestSystem-akka.actor.default-dispatcher-6] DEBUG slick.compiler.CodeGen -- Compiled server-side to: | CompiledStatement "select "id" from "suggestions_version"" : Vector[t10<(Long')>] 23:04:42.320 [TestSystem-akka.actor.default-dispatcher-6] DEBUG slick.compiler.QueryCompiler -- After phase codeGen: | ResultSetMapping : Vector[Mapped[Option[Long']]] | from s8: CompiledStatement "select "id" from "suggestions_version"" : Vector[t10<(Long')>] | map: CompiledMapping : Mapped[Option[Long']] | converter: TypeMappingResultConverter | child: OptionResultConverter$mcJ$sp idx=1 : Long' 23:04:42.320 [TestSystem-akka.actor.default-dispatcher-6] DEBUG slick.compiler.QueryCompilerBenchmark -- ------------------- Phase: Time --------- 23:04:42.320 [TestSystem-akka.actor.default-dispatcher-6] DEBUG slick.compiler.QueryCompilerBenchmark -- assignUniqueSymbols: 0.101991 ms 23:04:42.320 [TestSystem-akka.actor.default-dispatcher-6] DEBUG slick.compiler.QueryCompilerBenchmark -- unrollTailBinds: 0.015431 ms ... ``` Now: Gone. |
||
---|---|---|
.. | ||
interpreter-dsl-test/src/test/java/org/enso/interpreter/dsl/test | ||
language-server | ||
launcher/src | ||
polyglot-api/src | ||
runner | ||
runtime | ||
runtime-instrument-common/src | ||
runtime-instrument-id-execution/src/main/java/org/enso/interpreter/instrument | ||
runtime-instrument-repl-debugger/src/main/java/org/enso/interpreter/instrument | ||
runtime-instrument-runtime-server/src/main/java/org/enso/interpreter/instrument | ||
runtime-language-epb/src/main/java/org/enso/interpreter/epb | ||
runtime-parser/src | ||
runtime-with-instruments/src/test | ||
runtime-with-polyglot/src/test | ||
README.md |
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.