InterpreterConfig constructor

InterpreterConfig({
  1. bool showDartStackTrace = false,
  2. bool showHetuStackTrace = false,
  3. int stackTraceDisplayCountLimit = 5,
  4. bool processError = true,
  5. bool debugMode = false,
  6. bool allowVariableShadowing = true,
  7. bool allowImplicitVariableDeclaration = false,
  8. bool allowImplicitNullToZeroConversion = false,
  9. bool allowImplicitEmptyValueToFalseConversion = false,
  10. bool allowInitializationExpresssionHaveValue = false,
  11. bool printPerformanceStatistics = false,
  12. bool checkTypeAnnotationAtRuntime = false,
  13. bool resolveExternalFunctionsDynamically = false,
})

Implementation

InterpreterConfig({
  this.showDartStackTrace = false,
  this.showHetuStackTrace = false,
  this.stackTraceDisplayCountLimit = 5,
  this.processError = true,
  this.debugMode = false,
  this.allowVariableShadowing = true,
  this.allowImplicitVariableDeclaration = false,
  this.allowImplicitNullToZeroConversion = false,
  this.allowImplicitEmptyValueToFalseConversion = false,
  this.allowInitializationExpresssionHaveValue = false,
  this.printPerformanceStatistics = false,
  this.checkTypeAnnotationAtRuntime = false,
  this.resolveExternalFunctionsDynamically = false,
});