Skip to content

Latest commit

 

History

History
75 lines (60 loc) · 2.76 KB

inference-and-checking.md

File metadata and controls

75 lines (60 loc) · 2.76 KB
layout title category tags order
developer-doc
Inference and Checking
types
types
inference
checking
compiler
13

Inference and Checking

In spite of being dynamically-typed language, Enso is built with a sophisticated type checker capable of reasoning about Enso typed system. However, a type checker on its own is quite useless. For Enso to truly be usable, it must also have a powerful type inference engine.

Warning

The actionables for this section are:

  • Work out how on earth we do inference and how we maximise inference power.
  • Do we want to provide a way to reason about the runtime representation of types? This is 'Levity Polymorphism' style.
  • We want error messages to be as informative as possible, and are willing to retain significant extra algorithmic state in the typechecker to ensure that they are. This means both formatting and useful information.
  • It is going to be important to retain as much information as possible in order to provide informative error messages. This means that the eventual algorithm is likely to combine techniques from both W and M (context-insensitive and context-sensitive respectively).

Maximal Inference Power

In order to make Enso's type inference as helpful and friendly as possible to our users, we want the ability to infer the maximal subset of the types that Enso can express.

[!WARNING] The actionables for this section are:

  • How do we do inference for higher-rank and impredicative instantiations.
  • How do we infer contexts, and how do we make that inference granular (e.g. IO.Read, IO.Write, rather than just IO).
  • How do we propagate inference information as far as possible?
  • If it comes to a tension between typechecker speed and inference capability, Enso will err on the side of inference capability in order to promote ease of use. Speed will be increased by performing incremental type-checking where possible on subsequent changes.
  • Where are we okay requiring annotations? Polymorphic recursion, higher rank function parameters, constrained data and dependency?

Type Inference Algorithm

[!WARNING] The actionables for this section are:

  • Specify the inference algorithm.

Inferring Dependency

[!WARNING] The actionables for this section are:

  • Specify how (if at all) we can infer dependent quantifiers.

Type Checking Algorithm

[!WARNING] The actionables for this section are:

  • Specify the type checking algorithm.