Searched refs:errorCallback (Results 1 – 1 of 1) sorted by relevance
165 protected CompiledCode Compile(ScriptSource source, Action<string> errorCallback) in Compile() argument167 return source.Compile(new ErrorHandler(errorCallback)); in Compile()175 protected void Execute(CompiledCode code, Action<string> errorCallback) in Execute() argument186 errorCallback?.Invoke(e.Message); in Execute()199 public ErrorHandler(Action<string> errorCallback) in ErrorHandler() argument201 this.errorCallback = errorCallback; in ErrorHandler()206 …errorCallback?.Invoke($"[{severity}] {message} (Line {span.Start.Line}, Column {span.Start.Column}… in ErrorReported()209 private readonly Action<string> errorCallback; field in Antmicro.Renode.Core.PythonEngine.ErrorHandler