Skip to content

indev features

Jean Dubois edited this page Jun 1, 2023 · 5 revisions

Indev features

Help me improve theses features with the Issues tab or with the Discussions tab!

context variables

  • __actual_context__ is the name of the function where the code is executed. May be <program>
  • __exec_from__ is the name of the parent of the function where the code is executed.
    • If __actual_context__ is <program>, __exec_from__ is (shell).
    • If the code is inside a function foo that is directly in <program>, __exec_from__ is foo from <program>.
    • If the code is inside a function bar executed from our foo (that is in <program>), __exec_from__ is bar from foo.

base value

  • __base_value__ is the base value (python class Value). It is basically to test some things.
Clone this wiki locally