reportError method

void reportError(
  1. MiniscriptException mse
)

Report a MiniScript error to the user. The default implementation simply invokes errorOutput with the error description. If you want to do something different, then make an Interpreter subclass, and override this method.

Implementation

void reportError(MiniscriptException mse) {
  errorOutput!(mse.description(), true);
}