EnvironmentFinalizer typedef

EnvironmentFinalizer = Object Function(Environment environment, Object? value)

A Function that can be used to process the result of a variable expression before it is output.

For example one can convert null implicitly into an empty string here.

Takes Environment as first argument.

Implementation

typedef EnvironmentFinalizer = Object Function(
    Environment environment, Object? value);