Skip to content
Merged
Prev Previous commit
Next Next commit
Fix compilation.
  • Loading branch information
thaystg committed Nov 11, 2021
commit 3e832bf76bed8c0d272d3cfeb9284acc84353b1f
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ internal static async Task<JObject> CompileAndRunTheExpression(string expression
cancellationToken: token);
return JObject.FromObject(ConvertCSharpToJSType(task.Result, task.Result.GetType()));
}
catch (Exception e)
catch (Exception)
{
throw new ReturnAsErrorException($"Cannot evaluate '{expression}'.", "CompilationError");
}
Expand Down