Skip to content

[#61] Rename integrational interpreter

Description

Words "interpreter", "interpret" and such are a bit ambiguous in our code. There is Michelson.Interpret which interprets one contract (one may say it interprets a sequence of instructions against given stack) and there is Michelson.Runtime which also uses "interpret(er)" words. It leads to ambiguity and confusion. For instance, there are types with very similar names such as InterpretError and InterpreterError. This MR proposes renaming all appearances of "interpret" with "executor". I'm sorry for these all merge conflicts that'll be caused in a future.

Related issue(s)

Resolves #61 (closed)

Checklist for your Merge Request

Related changes (conditional)

  • Tests (see short guidelines)

    • If I added new functionality, I added tests covering it.
    • If I fixed a bug, I added a regression test to prevent the bug from silently reappearing again.
  • Documentation

    • I checked whether I should update the docs and did so if necessary:
    • I updated the changelog if my changes are externally visible.

Stylistic guide (mandatory)

Merge request reports